#38958: C++解答


Ghost543 (The Ghost)

學校 : 不指定學校
編號 : 259947
來源 : [218.164.149.227]
最後登入時間 :
2024-02-11 22:26:11
a004. 文文的求婚 | From: [218.164.135.78] | 發表日期 : 2024-01-07 00:27

#include <iostream>
using namespace std;
int main() {
    int a=0;
    while(cin>>a){
        if (a%4!=0||a%100==0&&a%400!=0) cout<<"平年";
        else cout<<"閏年";
        cout<<"\n";
    }
}

 
ZeroJudge Forum