Dornann


私信TA

用户名:dotcpp0635303

访问量:1699

签 名:

唯其不可能,所以才值得期待

等  级
排  名 2892
经  验 2112
参赛次数 1
文章发表 13
年  龄 18
在职情况 学生
学  校 HEU
专  业

  自我简介:

是个帅币

python就不讲什么结构体了,咱没有这玩意

参考代码:

year, month, day = map(int, input().split())
days1 = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
days2 = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
t = ''
if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
    t = 'Y'
else:
    t = 'N'
ans = 0
if t == 'Y':
    ans = sum(days2[0:month - 1])
else:
    ans = sum(days1[0:month - 1])
ans += day
print(ans)


 

0.0分

0 人评分

  评论区

  • «
  • »