Monday 7 October 2024

Program Tahun Kabisat

 #include <iostream>

using namespace std;

int main()

{

  cout << "##  Program C++ Cek Tahun Kabisat  ##" << endl;

  cout << "=====================================" << endl;

  cout << endl;

  int year;

  string ket;

  cout << "Input tahun: "; cin >> year;

 

   if (year % 400 == 0) {

     ket=" adalah tahun kabisat";

   }

   else if (year % 100 == 0) {

     ket=" bukan tahun kabisat";

   }

   else if (year % 4 == 0) {

     ket=" adalah tahun kabisat";

   }

   else {

     ket=" bukan tahun kabisat";

   }

 

  cout <<year<<" "<<ket<< endl;

  return 0;

}

No comments:

Post a Comment