#!/usr/bin/python
# -*- coding: UTF-8 -*-

year = int(raw_input('year:\n'))
month = int(raw_input('month:\n'))
day = int(raw_input('day:\n'))

months = (0,31,59,90,120,151,181,212,243,273,304,334)
if 0 < month <= 12:
    sum = months[month - 1]
else:
    print 'data error'
sum += day
leap = 0
if (year % 400 == 0) or ((year % 4 == 0) and (year % 100 != 0)):
    leap = 1
if (leap == 1) and (month > 2):
    sum += 1
print 'it is the %dth day.' % sum

 

相关文章:

  • 2022-01-08
  • 2021-06-27
  • 2021-12-08
  • 2022-12-23
  • 2021-05-25
  • 2021-06-23
  • 2022-03-03
  • 2018-08-30
猜你喜欢
  • 2022-12-23
  • 2021-08-19
  • 2022-12-23
  • 2021-12-31
  • 2021-05-20
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案