Commit 54430ab4 by BellCodeEditor

save project

parent d27fd490
Showing with 20 additions and 0 deletions
l = []
for i in range(3):
x = int
\ No newline at end of file
year = int(raw_input('year:\n'))
month = int(raw_input('month:\n'))
day = (raw_input('day:\n'))
months = (0,31,59,90,120,151,181,212,243,279,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.' % sum
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment