Posted by : Unknown Sabtu, 20 September 2014



LAPORAN KEGIATAN PROJECT JAVA


   1.     TUJUAN

Setelah melaksanakan praktikum siswa mampu :
      - Memahami fungsi dari beberapa scipt Java
      - Menyelesaikan study kasus


   2.     ALAT  & BAHAN

      - Komputer PC/Laptop/Notebook/Netbook
      - NetBeans IDE


   3.     LANDASAN TEORI
  1. while loop
Pernyataan while loop adalah pernyataan atau blok pernyataan yang diulang-ulang sampai mencapai kondisi yang cocok.
2. do-while loop
Do-while loop mirip dengan while-loop. Pernyataan di dalam do-while loop akan dieksekusi beberapa kali selama kondisi bernilai benar(true).
3. for loop
Pernyataan for loop memiliki kondisi hampir mirip seperti struktur pengulangan sebelumnya yaitu melakukan pengulangan untuk mengeksekusi kode yang sama sebanyak jumlah yang telah ditentukan.




4.     CONTOH PROGRAM & HASIL PROGRAM
  1  .     Program Loop (For) Dalam Java
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Mbambes
 */
public class loop {
    public static void main(String[] arg) {
int i;
for (i = 100000;i>10000;i=i-10000)
    System.out.print(+i+", ");
    }
}



   2.     Program Looping Dalam Java
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Mbambes
 */
public class LoopingSam {
   

     public static void main (String[] arg) {
                for (int i=10;i>1;i--){
                    System.out.println("Ora MasaLah Pak Masio AngeL");
    }
}
}


   3.     Program Looping Dalam Java
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Mbambes
 */
public class ContohLoopingWhile {
        public static void main (String[] arg) {
        int i=0;
        while (i<11){
             System.out.println(i);
        i++;
    }
  }
}
    




   


  
    5.     STUDI KASUS

*  PROGRAM DAN HASIL

   4.     Program Looping Menggunakan I.O Dalam Java
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Mbambes
 */import java.io.*;
public class looping {
    public static void main (String []arg) throws IOException{
    BufferedReader in = new BufferedReader (
    new InputStreamReader(System.in));
   
    System.out.print("Mengulangi Berapa Kali : ");
    int masuk = in.read();
   
    for (int i=1;i<=masuk;i++)
        System.out.println("AREMA");
    }
}


   5.     Program Looping (If,Else)  Dalam Java .
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Mbambes
 */
public class LoopingIfeLse {
    public static void main (String[] arg){
int n =5;
int hasil=0;
for(int i=1;i<=n;i++){
    hasil+=i;
    if(i !=n) {
        System.out.print(i + "+");
    }else{
        System.out.print(i + "=");
    }
       
    }
System.out.println(hasil);
}
       
}



   6.     Program Looping (While)  Dalam Java .
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Mbambes
 */
public class TugasLoopingWhile {
    public static void main (String[] arg){
int n =10;
int hasil=0;
int i=1;
do{
    System.out.print(i);
    if(i !=n) {
        System.out.print("+");
    }else{
        System.out.print("=");
    }
    hasil +=i;
    i++;
    }while(i<=n);
System.out.println(hasil);

}
       
}


   7.     Program Looping (While,For)  Dalam Java .


/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Mbambes
 */
public class TugasWhileForDo {
      public static void main (String[] arg) {
          int i=1, j;
          while (i<=5) {
              j=1;
              while (j<=i){
                  System.out.print(i*j+" ");
                
                  j++;
              }
            System.out.println();
            i++;
          
          }
      }

6.       KESIMPULAN

Loop atau perulangan adalah suatu bentuk kegiatan mengulang suatu statement sampai batas yang diinginkan. Dalam pemograman Loop atau perulangan sangat berguna sekali. Kegunaan sederhana dalam perulangan terlukis seperti ini: Jika kita ingin menuliskan kata “saya ganteng” sebanyak seribu kali maka kita harus membuat seribu baris kata “saya ganteng” dalam kode pemrogaman kita. Tapi dengan adanya perulangan maka kita hanya cukup menuliskan 5 sampai 7 baris kode saja. Dalam praktek sebenarnya, tentu saja perulangan sangat membantu sekali. Misal untuk memuat seluruh isi table dari sebuah database dimana datanya ingin kita tampilkan.

 



Leave a Reply

Subscribe to Posts | Subscribe to Comments

Welcome to My Blog

Popular Post

Blogger templates

Diberdayakan oleh Blogger.

You can replace this text by going to "Layout" and then "Page Elements" section. Edit " About "

Mbambes

Mbambes

Translate

About Me

Blogger templates

clock

- Copyright © Mbambes BLOG -Robotic Notes- Powered by Blogger - Designed by Johanes Djogan -