Guest User

Untitled

a guest
Sep 29th, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. Scanner sc = new Scanner(System.in);
  2. int harga, jumlah, total, diskon = 0;
  3.  
  4. System.out.println("Masukkan Jumlah Barang:");
  5. jumlah = sc.nextInt();
  6. System.out.println("Masukkan Harga Barang per satuan:");
  7. harga = sc.nextInt();
  8. total=harga*jumlah;
  9. System.out.println("Total Bayar: "+total);
  10.  
  11. if (total>=50000 && total<=99999){
  12. diskon = total-(total*5/100);
  13. System.out.println("Anda Mendapatkan Diskon 5%\nBayar: Rp. "+ diskon);
  14. }else if (total>=100000 && total<=199999){
  15. diskon = total-(total*10/100);
  16. System.out.println("Anda Mendapatkan Diskon 10%\nBayar: Rp. "+ diskon);
  17. }else if (total>=200000){
  18. diskon = total-(total*15/100);
  19. System.out.println("Anda Mendapatkan Diskon 15%\nBayar: Rp. "+ diskon);
  20. }
  21.  
  22. if (jumlah>=50){
  23. diskon = (diskon-(diskon*5/100));
  24. System.out.println("Anda Mendapatkan Diskon 5% Atas Pembelian Barang Diatas 50 unit\nBayar: Rp. "+ diskon);
  25. }
  26.  
  27. }}
Advertisement
Add Comment
Please, Sign In to add comment