1. Penjelasan Kasus Program
Sebuah super market mengadakan
diskon besar besaran untuk semua item barang ,
Chitato = 10500
Kacang garuda = 15000
Pure life = 3000
Qtela = 4500
biskuit = 10000
Jika seluruh barang mencapai harga total 30000 konsumen
mendapatkan diskon 5% jika tidak konsumen tidak mendapatkan 0%
3. Source Coding
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package pkgif;
/**
*
* @author Pemakai
*/
public class If {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
int hargatotal,chitato,kacanggaruda,purelife,qtela,biskuit,diskon;
chitato = 10500;
kacanggaruda = 15000;
purelife = 3000;
qtela = 4000;
biskuit = 10000;
hargatotal= chitato+kacanggaruda+purelife+qtela+biskuit;
System.out.println(" harga total = " + hargatotal);
if (hargatotal>=30000) {
diskon=hargatotal*5/100;
hargatotal= hargatotal - diskon;
System.out.println("diskon = 5%\n"+hargatotal); }
}
}