返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){
  5.    
  6.     int y;
  7.     cin >> y;
  8.     if (y % 400 != 0 && y % 4 == 0){
  9.           cout << "閏年" << endl;      
  10.     }else{
  11.           cout << "平年" << endl;
  12.     }
  13.         
  14.     system("pause");

  15.     return 0;

  16. }
複製代碼
明輝

TOP

返回列表