-
Notifications
You must be signed in to change notification settings - Fork 0
/
Belanjabuah.java
55 lines (39 loc) · 1.7 KB
/
Belanjabuah.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import java.util.Scanner;
public class Belanjabuah {
public static void main(String[] args) {
String[][] daftarBuah = {
{"apel", "35000"},
{"jeruk", "50000"},
{"mangga", "25000"},
{"duku", "15000"},
{"semangka", "20000"}
};
Scanner input = new Scanner(System.in);
while (true) {
System.out.println("Menu:");
System.out.println("1. Beli Buah");
System.out.println("2. Lihat Struk");
System.out.println("3. Keluar");
System.out.print("Pilih menu: ");
int pilihan = input.nextInt();
if (pilihan == 1) {
System.out.println("Daftar Buah:");
for (int i = 0; i < daftarBuah.length; i++) {
System.out.println((i + 1) + ". " + daftarBuah[i][0] + " (Rp" + daftarBuah[i][1] + ")");
}
System.out.print("Pilih buah (nomor): ");
int nomorBuah = input.nextInt() - 1;
System.out.print("Jumlah: ");
int jumlah = input.nextInt();
System.out.println("Anda telah memilih " + jumlah + " " + daftarBuah[nomorBuah][0]);
} else if (pilihan == 2) {
System.out.println("Struk Belanja (sementara):");
} else if (pilihan == 3) {
System.out.println("Terima kasih!");
break;
} else {
System.out.println("Pilihan tidak valid.");
}
}
}
}