题解 1049: [编程入门]结构体之时间设计

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

结构体之时间设计

摘要:解题思路:注意事项:参考代码:def leap(year):    if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:        ……

python求解年月日问题

摘要:解题思路:注意事项:参考代码:year,month,day=map(int,input().split())sum=daydays = [31,28,31,30,31,30,31,31,30,31,3……

结构体之时间设计

摘要:解题思路:注意事项: 一月份要单独考虑参考代码:a=list(map(int,input().split()))b=a[0]c=a[1]d=a[2]sum=0e=[31,29,31,30,31,30,……

1049: [编程入门]结构体之时间设计

摘要:解题思路:先给出大致公式,然后再细分不同的情况进行处理注意事项:参考代码:y, m, d = map(int, input().split())num = 30*(m-1) + dfor i in r……

结构体之时间设计——计算为一年的第几天

摘要:解题思路:将有31天和30天的月份分开来用列表存放,然后计算注意事项:闰年2月比平年多一天并不是为奇数的月份的天数就有31天参考代码:a,b,c = map(int,input().split())L……