【題目敘述】https://zerojudge.tw/ShowProblem?problemid=a004
#include <iostream>
using namespace std;
int main() {
int y;
while (cin >> y) {
if (((y % 4 == 0) && (y % 100 != 0)) || (y % 400 == 0))
cout << "閏年\n";
else
cout << "平年\n";
}
return 0;
}
Python code (credit: Amy Chou)
while True:
try:
y = int(input())
if ((y%4==0) and (y%100!=0)) or (y%400==0):
print("閏年")
else:
print("平年")
except:
break