题解 1864: 数日子

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

筛选

我趣,这题直接输出也对

摘要:解题思路:无注意事项:无参考代码:#include <stdio.h>int main(){int date;    date=200;    printf("%d\n",date);    retu……

1864: 数日子

摘要:解题思路:比输入版判断日子简单,只需要初始化year、month、day,直接计算total注意事项:闰年&&月份>2 才+1参考代码:#include <stdio.h> int main() {……

数日子 (C语言代码)

摘要:解题思路:首先判断2018年是否为闰年,“能被4整除并且不能被100整除”或者“能被400整除”的年份为闰年,由于2018不能被4整除、也不能被400整除,所以2018年不是闰年,那么2018年的2月……

数日子 (C语言代码) 可AC

摘要:解题思路:注意事项:参考代码:#include <cstdlib> #include <iostream> #include <cmath> #include <cctype> #includ……

数日子 (C语言代码)

摘要:解题思路:非常简单的方法,用数组保存每一个月的天数。注意事项:参考代码:#include <stdio.h> int main() {     int m[13]={0,31,28,31,30,……

数日子 (C语言代码)

摘要:解题思路:直接输出注意事项:参考代码:#include<stdio.h>int main(){printf("200\n");return 0;}……