วันอาทิตย์ที่ 20 กันยายน พ.ศ. 2558

Lab4x_Leap_Year

def setup():
   year_input=int(input())
   calculate(year_input) #calculate the date
def calculate(year_input) :
  if (year_input%4!=0):
    print(year_input," isn't the Leap Year")
  elif (year_input%100!=0):
    print(year_input," is the Leap Year")
  elif (year_input%400==0):
    print(year_input," is the Leap Year")
  else:
    print(year_input," isn't the Leap Year")
setup()

ไม่มีความคิดเห็น:

แสดงความคิดเห็น