#19716:


CL108090806 (杜正全)

學校 : 新北市私立竹林高級中學
編號 : 102512
來源 : [163.20.243.76]
最後登入時間 :
2020-07-08 15:04:59
a004. 文文的求婚 | From: [163.20.243.76] | 發表日期 : 2019-10-23 15:37

#include <iostream>
using namespace std;
//西元年被4整除且不被100整除,或被400整除者即為閏年
int main() {
int x;
while(cin>>x){
if( (x%4==0 && x%100!=0) || x%400==0){
cout<<"閏年"<<endl;
}
else{
cout<<"平年"<<endl;
}
}

// your code goes here
return 0;
}

 
ZeroJudge Forum