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

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

筛选

结构体之时间设计

摘要:解题思路:可参考注释注意事项:参考代码:#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}; ……

结构体之时间设计C语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>struct date{    int year;    int month;    int d……