Perulangan For
Digunakan untuk menghasilkan pengulangan sejumlah kali yang di spesifikasikan. Jumlah pengulangan diketahui atau dapat ditentukan sebelum eksekusi.
Cara Penulisan For
For(nilaiawal;kondisi;increment/
decrement){statement}
Contoh :
For( i=1;i<=10;i=i+1 ) {statement}
Contoh :
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package algoritma;
import java.io.*;
public class PerulanganFor {
public static void main(String[] args){
DataInputStream dataAngka = new DataInputStream (System.in);
int x=0;
int y=0;
System.out.print("Masukkan angka i: ");
try{
x = Integer.parseInt(dataAngka.readLine());
}
catch(IOException e){System.out.println("Terjadi error");}
System.out.print("Masukkan angka n: ");
try{
y = Integer.parseInt(dataAngka.readLine());
}
catch(IOException e){System.out.println("Terjadi error");}
int i=0;
for(i=x;i<=y;i=i+1){
System.out.println(("Haslnya : "+i));
}
}
}
Screenshoot :
Perulangan For pada Java
This entry was posted on Friday, 11 September 2015. You can follow any responses to this entry through the RSS 2.0. You can leave a response.
Powered by Blogger.