清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
#!/usr/bin/env python while True: year=raw_input('please input a year: ') a= int(year) if a%4==0 and a%100!=0: print year, 'is runnian' elif a%400==0: print year ,'is runnian' else: print year ,'is not runnian'
2015/06/26 34603
清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
#!/usr/bin/env python while True: year=raw_input('please input a year: ') a= int(year) if a%4==0 and a%100!=0: print year, 'is runnian' elif a%400==0: print year ,'is runnian' else: print year ,'is not runnian'