Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Scanner sc = new Scanner(System.in);
- int harga, jumlah, total, diskon = 0;
- System.out.println("Masukkan Jumlah Barang:");
- jumlah = sc.nextInt();
- System.out.println("Masukkan Harga Barang per satuan:");
- harga = sc.nextInt();
- total=harga*jumlah;
- System.out.println("Total Bayar: "+total);
- if (total>=50000 && total<=99999){
- diskon = total-(total*5/100);
- System.out.println("Anda Mendapatkan Diskon 5%\nBayar: Rp. "+ diskon);
- }else if (total>=100000 && total<=199999){
- diskon = total-(total*10/100);
- System.out.println("Anda Mendapatkan Diskon 10%\nBayar: Rp. "+ diskon);
- }else if (total>=200000){
- diskon = total-(total*15/100);
- System.out.println("Anda Mendapatkan Diskon 15%\nBayar: Rp. "+ diskon);
- }
- if (jumlah>=50){
- diskon = (diskon-(diskon*5/100));
- System.out.println("Anda Mendapatkan Diskon 5% Atas Pembelian Barang Diatas 50 unit\nBayar: Rp. "+ diskon);
- }
- }}
Advertisement
Add Comment
Please, Sign In to add comment