题解 1864: 数日子

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

筛选

数日子 (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++代码)

摘要:解题思路:注意事项:参考代码:这样就能通过,233333#include<iostream>using namespace std;int main(){ cout << 200 << endl; r……

数日子 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int n=2018,s=19;……

数日子 (C语言代码)

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