当前位置: 代码迷 >> 综合 >> P1022 日历问题2
  详细解决方案

P1022 日历问题2

热度:3   发布时间:2023-12-13 05:38:11.0

题目描述

已知 2007 年 10 月 10 日,请求出 n 天后是几月几号

输入描述

多组输入,每组输入为 1 行,为一个正整数 n (1≤n≤2000)

输出描述

对于每组输入,输出格式为 yyyy-mm-dd , 输出的值为 n 天后的日期

样例输入

1 2 

样例输出

2007-10-11 2007-10-12

解法1:

暴力就完事了

#include<iostream>
using namespace std;
int main()
{int n;while(cin>>n){int year=2007,month=10,day=10;for(int i=1;i<=n;i++){day=day+1;switch(month){case 1:case 3:case 5:case 7:case 8:case 10:case 12:if(day==32){month=month+1;day=1;}if(month==13){year=year+1;month=1;} break;case 2:if(year%4==0&&year%100!=0||year%400==0){if(day==30){month=month+1;day=1;}}else{   if(day==29){month=month+1;day=1;}}break;default:if(day==31){month=month+1;day=1;}if(month==13){year=year+1;month=1;} break;}}if(month<10&&day<10)cout<<year<<"-"<<0<<month<<"-"<<0<<day<<endl;else if(month<10&&day>=10)cout<<year<<"-"<<0<<month<<"-"<<day<<endl;else if(month>=10&&day<10)cout<<year<<"-"<<month<<"-"<<0<<day<<endl;elsecout<<year<<"-"<<month<<"-"<<day<<endl;}system("pause");
}

解法2:

时间戳就是Unix时间戳(Unix timestamp),定义为从格林威治时间1970年01月01日00时00分00秒起至现在的总秒数。

#include <ctime>
#include <iostream>
#include <iomanip>
using namespace std;int main()
{time_t start = 1191974400,temp; // 1191974400是2007年10月10日的unix时间戳int oneday = 86400,n; // 一天的秒数是24*60*60=86400tm *gmt;while(cin>>n){temp = start+oneday*n;gmt = gmtime(&temp);cout<<1900+gmt->tm_year<<'-'<<setw(2)<<setfill('0')<<gmt->tm_mon+1<<'-'<<setw(2)<<setfill('0')<<gmt->tm_mday<<endl;}system(" pause");
}