#23216: c++


810175@lzsh.tc.edu.tw (葉冠辰Ryan)

學校 : 不指定學校
編號 : 132397
來源 : []
最後登入時間 :
2020-09-18 08:50:34
a004. 文文的求婚 | From: [210.60.247.125] | 發表日期 : 2020-10-30 09:49

#include<iostream>

using namespace std;

int main()

{

int n;

while(cin >> n)

{

if( n%4==0 && n%100!=0 || n%400==0 )

    cout << "閏年" << endl ;

else

    cout << "平年" << endl ;

}

}

 

 
ZeroJudge Forum