目录
题目描述
下面是一个日期类的定义,请在类外实现其所有的方法,并在主函数中生成对象测试之。
注意,在判断明天日期时,要加入跨月、跨年、闰年的判断
例如9.月30日的明天是10月1日,12月31日的明天是第二年的1月1日
2月28日的明天要区分是否闰年,闰年则是2月29日,非闰年则是3月1日
输入
测试数据的组数t
第一组测试数据的年 月 日
..........
要求第一个日期的年月日初始化采用构造函数,第二个日期的年月日初始化采用setDate方法,第三个日期又采用构造函数,第四个日期又采用setDate方法,以此类推。
输出
输出今天的日期
输出明天的日期
输入样例1
4
2012 1 3
2012 2 28
2012 3 31
2012 4 30
输出样例1
Today is 2012/01/03
Tomorrow is 2012/01/04
Today is 2012/02/28
Tomorrow is 2012/02/29
Today is 2012/03/31
Tomorrow is 2012/04/01
Today is 2012/04/30
Tomorrow is 2012/05/01
思路分析
这道题几个月前打过,过了一个暑假,再次打这道题,仍然发现有新的体会。下面是两次的代码量对比:
一个暑假没怎么打题,就是长了见识,知道了一件事,那就是打表解决问题。
没有看之前是怎么打的,过了几个月也忘记了,这次想到的就是先把闰年和平年的月份打出来,后期做判断的时候就非常简便:先判断跨年的,这个闰年和平年都一样,没有必要做区分,然后判断跨月的,因为在这里闰年和平年2月的天数不一样,所以在这里做区分开,其他情况day++完事。
AC代码
#include <iostream>
#include<string>
using namespace std;
int leap[12]={31,29,31,30,31,30,31,31,30,31,30,31};
int common[12]={31,28,31,30,31,30,31,31,30,31,30,31};
class Date{
int year,month,day;
public:
Date();
Date(int y,int m,int d);
int getYear();
int getMonth();
int getDay();
void setDate(int y,int m,int d);
void print();
void addOneDay();
};
Date::Date():year(1900),month(1),day(1){}
Date::Date(int y,int m,int d):year(y),month(m),day(d){}
int Date::getYear(){return year;}
int Date::getMonth(){return month;}
int Date::getDay(){return day;}
void Date::setDate(int y,int m,int d){year=y;month=m;day=d;}
void Date::print(){
cout.fill('0');
cout<<"Today is "<<year<<'/';
cout.width(2);
cout<<month<<'/';
cout.width(2);
cout<<day<<endl;
addOneDay();
cout<<"Tomorrow is "<<year<<'/';
cout.width(2);
cout<<month<<'/';
cout.width(2);
cout<<day<<endl;
}
void Date::addOneDay(){
if(month==12&&day==31){year++;month=day=1;return;}
if(year%4==0&&year%100!=0||year%400==0){
if(day==leap[month-1]){month++;day=1;return;}
}else if(day==common[month-1]){month++;day=1;return;}
day++;
}
int main(){
int t,i,year,month,day;
cin>>t;
for(i=1;i<=t;i++){
cin>>year>>month>>day;
if(i%2!=0){
Date test(year,month,day);
test.print();
}else{
Date test;
test.setDate(year,month,day);
test.print();
}
}
}
本文含有隐藏内容,请 开通VIP 后查看