判断第几天 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int * days; int x, y, z, i, total; while (scanf("%d/…… 题解列表 2019年02月17日 0 点赞 0 评论 368 浏览 评分:0.0
判断第几天C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool IsLeapYear(int year)//用来判断是否是闰年{ if (y…… 题解列表 2023年10月21日 0 点赞 0 评论 90 浏览 评分:0.0
判断第几天-题解(C语言代码) 摘要:#include #include #include #include int main() { int year,month,day; int a,b,c[12]={31,28,3…… 题解列表 2019年08月30日 0 点赞 0 评论 626 浏览 评分:0.0
判断第几天 (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 评论 321 浏览 评分: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