主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
我与代码的故事
2024年5月16日 23:26
日期类(模拟) 题解:
P1437
回复 0
|
赞 1
|
浏览 488
#include<bits/stdc++.h> using namespace std; int month[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int n; int y, m, d; bool cheak(int y) { return y % 4 == 0 && y % 100 != 0 || y % 400 == 0; } int main() { cin >> n; while(n --) ...
渐鸿于陆
2024年3月23日 21:50
日期类 题解:成功AC,nice
P1437
回复 0
|
赞 0
|
浏览 540
#include<stdio.h> int days[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int main(void){ int year,month,day,n; scanf("%d",&n); while(n--){ scanf("%d%d%d",&year,&...
flipped
2024年3月23日 20:53
日期类 题解:
P1437
回复 0
|
赞 0
|
浏览 473
#include<stdio.h> #include<stdbool.h> bool isL(int year) { if((year%4==0&&year%100!=0)||year%400==0) return true; else return false; } int main() { int n; int y,m,d; scanf("%d",&n); int f[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int year[1...
小酒
2024年3月11日 15:31
日期类 题解:
P1437
回复 0
|
赞 0
|
浏览 455
1437解题思路 #include <bits/stdc++.h> using namespace std; int main() { int m;//输入个数 int year,month,day; int a[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; scanf("%d",&m);...
小王桐学
2024年3月1日 19:59
日期类 题解:C
P1437
回复 0
|
赞 0
|
浏览 466
#include <stdio.h> void PrintDate(int *y,int *m,int *d) { int r[12] = {31,28,31,30,31,30,31,31,30,31,30,31}; if(*d - r[*m-1] == 0) { if(*m == 12) //跨年份跨月份 { (*y)++; *m = 1; *d = 1; } else //不跨年份跨月份 { (*m)++; *d = 1; } } else (*d)++...
DestinyCares+++
2024年1月29日 15:48
日期类 题解:
P1437
回复 0
|
赞 0
|
浏览 725
#include<iostream> #include <stdio.h> using namespace std; int main(){ int date[12][2]={{1,31},{2,28},{3,31},{4,30},{5,31},{6,30},{7,31},{8,31},{9,30},{10,31},{11,30},{12,31}}; int m,n,year,month,day; cin>>m; &nbs...
linlan
2024年1月27日 17:48
日期类 题解:
P1437
回复 0
|
赞 1
|
浏览 562
1.对2月特判:闰年、非闰年 2.31天、30天的特判 3.12月的最后一天特判 4.其余时间:d++; 5.注意输出格式 %02d #include <bits/stdc++.h> using namespace std ; int is(int y) { return ((y % 4 == 0 && y % 100 != 0) || (y % 400 == 0)); } void solve() { int y, m, d; &nbs...
Cookie‘s AE86
2024年1月18日 16:25
日期类 题解:C++实现
P1437
回复 0
|
赞 1
|
浏览 717
需注意 (1)日进位:一个月的最后一天加一天后日变为1月份加1,例如:1999 11 30; (2)月进位:月加1后若变为13月需要将月份变为1,年份加1,例如:1999 12 31; #include<bits/stdc++.h> using namespace std ; int main(){ int n ; cin >> n ; int year[n] ,month[n] ,day[n] ; int f [ ] = {0 ,31 ,28 ,31 ,30 ,31 ,30 ,31...
Syou
2023年8月14日 14:47
日期类 题解:
P1437
回复 0
|
赞 1
|
浏览 1.1k
C++ 逐个单独处理年末和月末的情况 #include <iostream> #include <iomanip> using namespace std; bool isLeapYear(int year){ return (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)); } void show(int year, int month, int day){ if(month == 12 && day == 31){ ...
dongqing
2023年7月27日 10:04
日期类 题解:
P1437
回复 0
|
赞 1
|
浏览 874
考虑特殊年份特殊day几种情况 #include<bits/stdc++.h> using namespace std; int main() { int m; int f[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; cin>>m; for(int i=0;i<m;i++) { int y,m,d; cin>>y>>m>>d; ...
1
2
题目
日期类
题解数量
16
发布题解
热门题解
1
P1437 解题思路分享
2
话说这题不是让写一个类吗?
3
日期类 题解:
4
日期类 题解:C++实现
5
日期类 题解:
6
蒟蒻作法
7
日期类 题解:
8
日期类(模拟) 题解:
9
同1410
10
日期类 题解:C