题解 1864: 数日子

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

筛选

我趣,这题直接输出也对

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

数日子-题解(C++代码)

摘要:解题思路:本题为C++循环结构的课后习题,这里我提供了一种用循环实现的方法。注意事项:参考代码:#include <iostream>using namespace std;/* run this p……

数日子 (C语言代码)

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

数日子 (C语言代码)

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

数日子 (C语言代码)

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

数日子 (C++代码)

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