#28868: 判斷閏年平年


910144@ms.mingdao.edu.tw (23_陳宇灝_K2I1_Tim)

學校 : 不指定學校
編號 : 179778
來源 : [1.168.78.29]
最後登入時間 :
2023-01-15 20:23:25
a004. 文文的求婚 | From: [114.41.139.154] | 發表日期 : 2022-01-09 15:10

#include <iostream>

#include <iomanip>

using namespace std;

 

 

int main(int argc, char** argv) {

int n;

while(cin >> n){

if (n%4!=0 or (n%100==0 and n%400!=0)){

cout << "平年" << "\n";

}

if ((n%4==0 and n%100!=0) or n%400==0){

cout << "閏年" << "\n";

}

}

}

 
ZeroJudge Forum