四年一闰,百年不闰,四百年再闰
1896年是闰年,1904年是闰年,但是1900年是平年。
yearInput = int(input("请输入年份:"))
if yearInput % 4 == 0:
if yearInput % 100 == 0:
if yearInput % 400 == 0:
print("世纪闰年")
else:
print("不是闰年")
else:
print("闰年")
else:
print("不是闰年")