Minggu, 16 Oktober 2011

Coding Bil. Ganjil dan Deret


class Dhony1{
public static void main (String [] args) {
int x = Integer.parseInt(args[0]);

int i, temp01, temp02, hasil;
temp01=0;
temp02=1;
hasil=0;

for(i=1; i<=x; i++){
temp01=temp02;
temp02=hasil;
System.out.print(hasil+" ");
hasil=temp01+temp02;
}
}
}

 OUTPUT:

 1 1 2 3 5 8 13 21 24


 
public class Dhony2{

 public static void main(String[] args) {

 
  int limit = 50; \\ untuk membatasi batas bilangan, bila angka 50 diganti maka deret akan berubah sesuai dengan angka yg dimasukan

  System.out.println("Mencetak deret angka ganjil dari angka 1 sampai " + limit);

  for(int i=1; i <= limit; i++){


   if( i % 2 != 0){
    System.out.print(i + " ");
   }
  }
 }
}

Outputny:

1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49

0 komentar:

Posting Komentar

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Enterprise Project Management