判断第几天 (C语言代码) 摘要:解题思路:先判断是否是闰年,再确定到哪一个月,最后相加最后一个月天数;具体看注释;注意事项:输入日期是必须加入斜杆,不然程序死循环;参考代码:#include <stdio.h> int time …… 题解列表 2018年11月05日 7 点赞 2 评论 690 浏览 评分:0.0
判断第几天 (Java代码) 摘要:解题思路:用java自带的Calendar来实现注意事项:主要是获得三个日期参考代码:import java.util.Calendar; import java.util.Scanner; …… 题解列表 2018年06月16日 0 点赞 0 评论 482 浏览 评分:0.0
判断第几天 (C语言代码) 摘要:解题思路:分闰年和非闰年计算;注意事项:注意int sum要在while循环中定义 sum=0 参考代码:#include<stdio.h>int main(){ int i,year,mont…… 题解列表 2019年03月10日 0 点赞 0 评论 322 浏览 评分:0.0
这个比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
编写题解 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 评论 358 浏览 评分:0.0
数组待定选择 摘要:解题思路:把每个月之前的月份天数之和加起来待用注意事项:取值的时候由于数组的特性需要在月份上减1参考代码:#include<stdio.h>int run(int a);int main(){ …… 题解列表 2019年05月12日 0 点赞 0 评论 497 浏览 评分:0.0
判断第几天 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std; int fun(int a){ if((a%4==0&&a%100!=0)||(a%400…… 题解列表 2018年08月07日 0 点赞 0 评论 606 浏览 评分:0.0
判断第几天 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int y, m, d; while (scanf("%d/%d/%d", &y, &m, &d…… 题解列表 2023年07月02日 0 点赞 0 评论 84 浏览 评分:0.0
1850:判断第几天 (C语言代码),数组解决问题 摘要:回顾了一下这个题的原先解决思路,不能保证按此思路下去是否能作对这道题,于是另辟蹊径。解题思路: 就是闰年比较麻烦,需要先判断。我列了2个数组,一个是闰年的,一个不是闰年的。通过注意事项:编程时注意到以…… 题解列表 2018年11月16日 1 点赞 1 评论 1147 浏览 评分:0.0