本文实例为大家分享了C++实现万年历的具体代码,供大家参考,具体内容如下
1.此万年历功能
1>日期加减天数
2>日期与日期之间的差值
3>输入年月显示当月日历
2.代码实现
#include
#include
using namespace std;
class Date
{
public:
Date(int year = 1990, int month = 1, int day = 1) //构造函数
:_year(year), _month(month), _day(day)
{
if (JudgeRightDate()) //判断传入