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

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

筛选

思路清晰 switch+if 就OK了

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ struct time { int year; int mon; in……

结构体与时间设计C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Date{ int year; int mouth; int day;}data;int main(){ int i=0;……

C语言 结构体之时间设计&

摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct calendar{     int year;    int month;    int day;}date, * p;……

结构体之时间设计

摘要:解题思路:注意事项:参考代码:y,m,d = map(int,input().split())m1 = [1,3,5,7,8,10,12]m2 = [4,6,9,11]s = 0for i in ra……

1049-结构体之时间设计

摘要:解题思路:注意事项:参考代码:/*天数问题:1、3、5、7、8、10、12月:31天4、6、9、11月:30天2月:非闰年有28天,闰年有29天 闰年特点:1) 4的倍数,不是100的倍数2) 400……

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

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    struct years    {        ;        int year;        i……