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

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

筛选

数组结构体时间设计

摘要:#include<stdio.h>typedef struct today{ int year; int month; int day;}today;int main(){ today date; i……

结构体之时间设计C语言

摘要:解题思路:这是最容易想到的解法,把每种情况列举出来。注意事项:参考代码:#include <stdio.h>struct Stu{ int year; int month; int date;};in……

最笨的方法

摘要:解题思路:首先输入结构体一变量的年月日,然后转到count函数先对闰年进行判断,取余为零的就是闰年。下一步到对月份的判断,在把每个月份的数累加参考代码:#include <stdio.h>int co……

简单暴力破解

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

日期的计算

摘要:解题思路:利用类进行处理;注意事项:平年、闰年的判断。参考代码:#include<iostream> class Time { private:int year, month, day; p……

思路简单,清晰明了

摘要: #基本上用汉语怎么求,代码就怎么求 #####根据月份统计天数,之后相加 ``` #include using namespace std; struct Node { int y……