Tuesday, 17 April 2012

leap year program using the function method

#include <cstdlib>
#include <iostream>

using namespace std;

void proses(int tahun){
char *hasil;

if(tahun%4==0){
hasil = "Tahun Kabisat";
}else hasil = "Bukan Tahun Kabisat";

cout << "Tahun " << tahun << " adalah " << hasil << endl;
}
int main(int argc, char *argv[])
{
int tahun;
cout << "Menentukan Tahun Kabisat" << endl;
cout << "Masukkan Tahun = ";
cin >> tahun;
proses(tahun);

system("PAUSE");
return 0;

0 comments:

Post a Comment

.

.

.

.
Design by BlogSpotDesign | Ngetik Dot Com