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

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

筛选

python天数计算——挑战最简解

摘要:python就不讲什么结构体了,咱没有这玩意参考代码:year, month, day = map(int, input().split()) days1 = [31, 28, 31, 30, 31……

结构体之时间设计

摘要:解题思路:可参考注释注意事项:参考代码:#include<stdio.h> struct Date{     int year;     int month;     int day; };……

1049注意真积分

摘要:解题思路:注意事项:i要从零开始参考代码:#include <stdio.h>int main(){ int a[12]={31,28,31,30,31,30,31,31,30,31,30,31}; ……