• Pada Algoritma pencarian banyak yang bisa kita temukan atau gunakan. Ada Merge Sort, Quick Sort, Bubble Sort, dan...
  • Pada dasarnya algoritma searching banyak kita jumpai. Apalagi hanya untuk mencari nilai minimum dan nilai maximum...
  • Kalian pasti sudah tahu apa itu Deret Fibonacci, ya benar. (Padahal gak jawab). Tetapi pada pembahasan kali ini kita akan membuar program...
  • Metoda Pencarian Biner ( Binary Search) hanya bisa diterapkan jika data array sudah terurut. Pengurutan Array bisa menggunakan jenis sorting ...
  • Salah satu contoh tipe algoritma brute force lainnya adalah linear search (pencarian berurutan), Dikatakan demikian karena algoritma ini menggunakan ...

Wednesday, April 13, 2011

Tahun Kabisat : Determining Leap Year in Program

Leap year is the year that occurs every four years. Characteristic of this year if that year is divisible by four then it will not rest or in other words the rest of his equals (zero). Based on these paernyataan we can create programs to determine whether the input year is a leap year or not.
To help get the rest of us can use the modulus (%). Before we make a program, we first create the algorithm. But here I will try to use a little variety. Which separates the BC or after AD. We create the algorithm.

Algorithm leap year
{ determining leap years to the modulus operator}

Deklarasi :
X         ←  int
Tulis    ←  string

Deskripsi :
if(x==0) then  tulis  ←  "awal tahun masehi";
else if (x>0 && x % 4 == 0) then tulis  ←  "tahun kabisat setelah masehi";
else if (x<0 && x % 4 == 0) then tulis  ←  "tahun kabisat sebelum masehi";
else if (x>0) then tulis  ←  "bukan tahun kabisat setelah masehi";
else tulis  ←  "bukan tahun kabisat sebelum masehi";

Once we make the algorithm is time to make the program. The key is that there is in the description we write as a process.

For C + + program please download here 
For Java program please download here

Chekidot friend! Hopefully you know and will be knowledge. Salam SHUPER!

Jadilah yang pertama mengomentari

Post a Comment

Tutorial Algorithm and Programming ©Template Blogger Green by Dicas Blogger.

To Up