寫一個程序,判斷輸入年份是否為閏年
閏年判斷方法:能被4整除但不能被100整除,或者能被400整除都是閏年
1 print("----------判斷是否為閏年----------") 2 3 temp = input('請輸入一個年份:') 4 while not temp.isdigit(): 5 temp = input("抱歉,您的輸入有誤,請輸入一個整數:") 6 7 year = int(temp) 8 if year / 400 == int(year / 400): 9 print(temp+'是閏年!') 10 else: 11 if(year / 4 == int(year / 4)) and (year / 100 != int(year / 100)): 12 print(temp+'是閏年!') 13 else: 14 print(temp+'不是閏年!')
