这个比1246数据要强,考虑了闰年的情况 摘要:#include<bits/stdc++.h> using namespace std; int main() { int y,m,d; char c; while…… 题解列表 2024年08月04日 0 点赞 0 评论 111 浏览 评分:0.0
判断第几天C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool IsLeapYear(int year)//用来判断是否是闰年{ if (y…… 题解列表 2023年10月21日 0 点赞 0 评论 90 浏览 评分:0.0
1850: 判断第几天 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string str; in…… 题解列表 2023年09月27日 0 点赞 0 评论 78 浏览 评分:0.0
判断第几天c++简单代码 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能头文件using namespace std;int main(){ int y,m,d,a[12]={31,…… 题解列表 2023年08月05日 0 点赞 0 评论 161 浏览 评分:9.9
题目 1850: 判断第几天 摘要:解题思路: for循环+switch足以解这道题注意事项:1.2月的闰月要判断 2.循环的条件 int i = 1; i < m; i++ 不能等于m不然会多加一个月份的天数 3. sum在每一次输…… 题解列表 2023年04月28日 0 点赞 0 评论 110 浏览 评分:0.0
编写题解 1850: 判断第几天(简单易懂,适合新手) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int y,m,d; int a[13]={00,31,28…… 题解列表 2022年07月20日 0 点赞 0 评论 164 浏览 评分:0.0
判断第几天-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; bool pan_r(int y){ if(y%4==0&&y%…… 题解列表 2020年04月24日 0 点赞 0 评论 354 浏览 评分:0.0
判断第几天 (C++代码) 摘要:解题思路:输入中含/,所以用string类型存储。string a存输入数据。看代码吧,不多说了,23333. 注意事项:参考代码:#include<iostream>#include<string…… 题解列表 2018年11月19日 0 点赞 0 评论 708 浏览 评分:4.7
判断第几天 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int num) { if ((n…… 题解列表 2018年06月09日 0 点赞 0 评论 851 浏览 评分:0.0