题解 1850: 判断第几天

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

筛选

判断第几天C++

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool IsLeapYear(int year)//用来判断是否是闰年{     if (y……

题目 1850: 判断第几天

摘要:解题思路: for循环+switch足以解这道题注意事项:1.2月的闰月要判断 2.循环的条件  int i = 1; i < m; i++ 不能等于m不然会多加一个月份的天数 3. sum在每一次输……

1850: 判断第几天

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() {     string str;     in……

判断第几天 (C++代码)

摘要:解题思路:输入中含/,所以用string类型存储。string a存输入数据。看代码吧,不多说了,23333.  注意事项:参考代码:#include<iostream>#include<string……

判断第几天c++简单代码

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能头文件using namespace std;int main(){    int y,m,d,a[12]={31,……