#13382: 幫我看一下哪裡錯,一直WA


mo724@kimo.com (賴姿潔)

學校 : 義守大學
編號 : 75400
來源 : [1.175.8.6]
最後登入時間 :
2018-02-10 00:11:59
a004. 文文的求婚 | From: [1.175.8.6] | 發表日期 : 2018-02-10 15:31

#include <iostream>
#include <cmath>

using namespace std;

int main(){
int year;


cin >> year;

if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
cout <<"閏年";
else
cout <<"平年";
return 0;
}

 
ZeroJudge Forum