生日日数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[12]={31,28,31,30,31,30,3…… 题解列表 2018年08月22日 0 点赞 0 评论 826 浏览 评分:0.0
生日日数-题解(C++代码) 摘要:```cpp #include using namespace std; bool isYeap(int year){ return year%4==0&&year%100!=0||year…… 题解列表 2020年05月12日 0 点赞 0 评论 402 浏览 评分:0.0
生日日数——python 摘要:解题思路:注意事项:参考代码:def f(year1): if (year1 % 100 != 0 and year1 % 4 == 0) or year1 % 400 == 0: …… 题解列表 2022年06月10日 0 点赞 0 评论 115 浏览 评分:0.0
生日日数 (C语言代码) 摘要:#include <stdio.h>struct date{ int year,month,day;};int main(){ int i,n,leap; int s[2][13…… 题解列表 2018年02月01日 0 点赞 0 评论 867 浏览 评分:0.0
生日日数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int check(int n) { if((n%4==0&&n%100)||(…… 题解列表 2018年06月01日 0 点赞 0 评论 564 浏览 评分:0.0
#C++1240——生日日数 摘要:思路参考注释参考代码:#include <iostream> using namespace std; int arr[]={0,31,28,31,30,31,30,31,31,30,31,30,…… 题解列表 2022年08月04日 0 点赞 0 评论 163 浏览 评分:0.0
生日日数 (C语言代码) 摘要:#include <stdio.h>int main(){ int yy, mm, dd; int year[12] = {31, 28, 31, 30, 31, 30, 31, 31, …… 题解列表 2017年12月01日 0 点赞 0 评论 1421 浏览 评分:0.0
生日日数 (Java代码) 摘要:解题思路:注意事项:别忘了导包import java.text.DateFormat;import java.text.SimpleDateFormat;import java.util.Calend…… 题解列表 2018年05月02日 1 点赞 1 评论 575 浏览 评分:6.0
生日日数-题解(C++代码)(简单版) 摘要:#### 解题思路: 注意先初始化月份天数,然后一天天加的时候判断是否为闰年就行了 #### 参考代码: ```cpp #include using namespace std; int …… 题解列表 2020年02月14日 0 点赞 0 评论 656 浏览 评分:8.8
生日日数 (C++代码) 摘要:解题思路: 需要注意的是:润年是每四年润一次,而每四年是365*4+1=1461(包含润年多出来的那一天),而1461*6=8766 1461*7=10227 可以使用多余的去减,也可以使用不足…… 题解列表 2018年10月30日 0 点赞 0 评论 1038 浏览 评分:9.0