主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
老猫
2021年1月11日 21:23
话说这题不是让写一个类吗?
P1437
回复 2
|
赞 2
|
浏览 8.9k
不知道是不是我理解错了 应该是让我们用类的做法 #include<iostream> #include <string> using namespace std; class date { public: int month[13]; //对日期加1 void increase(int year,int mon,int day) { if((year%400==0)||(year%4==0)&&(year%100!=0)) month[2]=29; else month[2]=2...
Sacan
2022年6月4日 16:27
同1410
P1437
回复 0
|
赞 1
|
浏览 4.2k
#include <iostream> using namespace std; int main() { int n; cin >> n; int days[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; for(int i = 1;i <= n;i++){ int y,m,d; cin >> y >> m >> d; if((y%4==0 && y...
happyday
2022年4月6日 15:38
题目没有闰年,在此就没考虑
P1437
回复 0
|
赞 0
|
浏览 5.2k
#include <bits/stdc++.h> using namespace std; int main(){ int n; int y,m,d; int f[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; cin>>n; for(int i=0; i<n; i++){ cin>>y>>m>>d; if(d+1<=f[m]){//如果天数加1没有超过该月份总天数,只改变天数 ...
杨德胜
2021年3月6日 15:16
P1437 解题思路分享
P1437
回复 0
|
赞 3
|
浏览 7.1k
#include <bits/stdc++.h> using namespace std; int main() { int n; int y,m,d; cin>>n; while(n--){ cin>>y>>m>>d; int f[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; d=d+1; if(d>f[m]){ d=d-f[m]; m++; } printf("%d-%02d-%02d\n",y...
A1120161820
2020年3月6日 16:24
日期类(c++)
P1437
回复 2
|
赞 0
|
浏览 11.0k
#include<iostream> #include<cstdio> using namespace std; int days[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; bool extra(int y) { if (y%400) return true; else if (y%100 != 0 && y%4==0) return true; else return false; } void add_one(int y, i...
FinalTaco
2020年3月26日 01:29
蒟蒻作法
P1437
回复 0
|
赞 1
|
浏览 9.8k
#include<bits/stdc++.h> using namespace std; int yuetianshu[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int main(){ int n = 0; cin >> n; &nbs...
1
2
题目
日期类
题解数量
16
发布题解
热门题解
1
P1437 解题思路分享
2
话说这题不是让写一个类吗?
3
日期类 题解:
4
日期类 题解:C++实现
5
日期类 题解:
6
蒟蒻作法
7
日期类 题解:
8
日期类(模拟) 题解:
9
同1410
10
日期类 题解:C