與正確輸出不相符(line:2249)
您的答案為: 平年
正確答案為: 閏年
以下是我的程式碼:
#include<iostream>
using namespace std;
int main()
{
int y;
while(cin>>y)
{
if((y%4==0&&y%100!=0)||(y%400==0&&y%4000!=0))
cout <<"閏年"<< endl;
else
cout<<"平年"<<endl;
}
return 0;
}