#37781:


a911023@stu.tnssh.tn.edu.tw (mk)

學校 : 不指定學校
編號 : 167239
來源 : [218.35.100.165]
最後登入時間 :
2024-07-16 16:53:38
a004. 文文的求婚 | From: [140.114.196.109] | 發表日期 : 2023-10-07 14:39

#include<iostream>
using namespace std;

int main()
{
  int a;
  while(cin>>a)
    {
      if((a%4==0)&&(a%100!=0))
      {
        cout << "閏年"<<endl;
      }
      else if(a%400==0)
      {
        cout << "閏年"<<endl;
      }
      else
      {
        cout << "平年"<<endl;
      }
    }
  return 0;
}

 
ZeroJudge Forum