程式碼如下:
while True:
a=int(input())
if ((a%4==0) and (a%100!=0)) or (a%400==0):
print('閏年')
else:
print('平年')
你好
在你的程式碼前後加上try except 就可以判斷何時該EOF了
加油!