码迷,mamicode.com
首页 > 其他好文 > 详细

判断给到的年份是否为闰年

时间:2017-01-31 14:23:28      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:else   int   print   dig   程序   nbsp   div   input   false   

#写一个程序,判断给到的年份是否为闰年
temp=input(‘请输入一个年份:‘)
while temp.isdigit()==False:
    temp=input(‘该吃药了吧,重新输入:‘)
year=int(temp)
if ((year%4==0) and (year%100!=0)) or (year%400==0):
    print(temp+‘年是闰年‘)
else:
    print(temp+‘年不是闰年‘)  

判断给到的年份是否为闰年

标签:else   int   print   dig   程序   nbsp   div   input   false   

原文地址:http://www.cnblogs.com/themost/p/6358766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!