布尔运算经典实例(闰年)

布尔运算经典实例(闰年)

year = int(input("请输入年份:"))
if ((year%4==0 and year%100!=0) or (year%400==0)):
    print("该年是闰年")
else:
    print("该年不是闰年")

请输入年份:1800
该年不是闰年

year = int(input("请输入年份:"))
if ((year%4==0 and year%100!=0) or (year%400==0)):
    print("该年是闰年")
else:
    print("该年不是闰年")

请输入年份:2000
该年是闰年

猜你喜欢

转载自blog.csdn.net/zx980414k/article/details/108840165