#8817: 怎都輸入都閏年


herogoder (kwei)

學校 : 國立中正大學
編號 : 29112
來源 : [140.113.194.234]
最後登入時間 :
2021-12-21 13:19:33
a004. 文文的求婚 | From: [115.43.101.58] | 發表日期 : 2014-05-19 20:06

#include <iostream>
 using namespace std; 
 int main() { 
 int s; 
 int c;
 int z;
 int a;
 while(cin >> s)
 { 
    c==s%4;
z==s%100;
    a==s%400;
    if (c==0 & z>0 & a==0)
    cout << "閏年" << endl; 
else
cout << "平年" <<  endl; 
 
 }  
 
 return 0; 
 
 }
 
ZeroJudge Forum