This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Wednesday, October 2, 2013

Algoritma Java


Tugas Algoritma dan Praktikum Java 2 Oktober 2013


Sistem Volume Luas Segitiga

Algoritma Penghitung Volume luas segitiga

  1. Mulai
  2. Masukan nilai alas. int alas=masuk.nextInt();
  3. Masukan nilai tinggi. int tinggi=masuk.nextInt();
  4. Masukan nilai panjang. int panjang=masuk.nextInt();
  5. Masukan proses Volume Luas Segitiga. double hasil= 0.5 * alas * tinggi * panjang;
  6. Hitung hasil. System.out.print ("hasil volume luas segitiga : " +hasil);
  7. Hasil
  8. Selesai

Flow Chart Volume Luas Segitiga




Source Code JAVA Input dan Output