Menentukan Banyaknya pecahan uang

June 6, 2010 at 12:02 pm Leave a comment

BufferedReader br= new BufferedReader (new InputStreamReader(System.in));

System.out.print(“Masukkan Harga Barang : “);

Integer Harga = Integer.parseInt(br.readLine());

Integer Hasil;

if (Harga / 100000 >0)

{      Hasil = Harga / 100000;

System.out.println(“Seratus Ribu : ” + Hasil );

Harga = Harga % 100000;

}

if (Harga / 50000 >0)

{      Hasil = Harga / 50000;

System.out.println(“Lima Puluh Ribu : ” + Hasil );

Harga = Harga % 50000;

}

if (Harga / 20000 >0)

{      Hasil = Harga / 20000;

System.out.println(“Dua Puluh Ribu : ” + Hasil );

Harga = Harga % 20000;

}

if (Harga / 10000 >0)

{      Hasil = Harga / 10000;

System.out.println(“Sepuluh Ribu : ” + Hasil );

Harga = Harga % 10000;

}

if (Harga / 5000 >0)

{      Hasil = Harga / 5000;

System.out.println(“Lima Ribu : ” + Hasil );

Harga = Harga % 5000;

}

if (Harga / 1000 >0)

{      Hasil = Harga / 1000;

System.out.println(“Seribu : ” + Hasil );

Harga = Harga % 1000;

}

if (Harga / 500 >0)

{      Hasil = Harga / 500;

System.out.println(“Lima Ratus : ” + Hasil );

Harga = Harga % 500;

}

if (Harga / 100 >0)

{      Hasil = Harga / 100;

System.out.println(“Seratus : ” + Hasil );

Harga = Harga % 100;

}

if (Harga / 50 >0)

{      Hasil = Harga / 50;

System.out.println(“Lima Puluh Rupiah : ” + Hasil );

Harga = Harga % 50;

}}}

Advertisement

Entry filed under: Uncategorized. Tags: .

Perhitungan Gaji Transaksi Penjualan

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Trackback this post  |  Subscribe to the comments via RSS Feed


 

June 2010
M T W T F S S
« Jan    
 123456
78910111213
14151617181920
21222324252627
282930  

Pages

Top Posts

  • None

Recent Posts


Blogger Ngalam



helga indra:



Follow

Get every new post delivered to your Inbox.