【C++】实现万年历

<span style="font-size:18px;">/******************************************************************************************
Purpose:
声明并实现一个万年历类【腾讯面试题】

Author:
周蒙蒙

Created Time:
2015-8-19
******************************************************************************************/
#include<iostream>
using namespace std;

class Date
{
public:
	// 初始化列表进行初始化。 
	//带缺省值的构造函数
	Date(int year = 1900, int month = 1, int day = 1)
		:_year(year),
		_month(month),
		_day(day)
	{	
		if (CheakDate()==0)
		{
			_year = 1900;
			_month = 1;
			_day = 1;
		}
	}
	//检查日期是否合法
	bool CheakDate()
	{
		if ((_year < 1) || (_month<0) || (_month)>12 || (_day)<0 || (_day)>GetMonthDay(_year, _month))
		{
			cout << "invaled date" << endl;
			return 0;
		}
		return 1;
	}
	//拷贝构造函数
	Date(const Date& d)
		: _year(d._year),
		_month(d._month),
		_day(d._day)
	{}
	//赋值操作符的重载
	Date& operator= (const Date& d)
	{
		if (*this != d)
		{
			_year = d._year;
			_month = d._month;
			_day = d._day;
		}
		return *this;
	}
	void Display()
	{
		cout << _year << "-" << _month << "-" << _day << endl;
	}
public:
	// 比较日期的运算符重载
	// 借鉴代码的复用
	bool operator == (const Date& d)
	{
		return _year == d._year &&
			_month == d._month &&
			_day == d._day;

	}
	bool operator != (const Date& d)
	{
		return !(*this == d);
	}
	bool operator > (const Date& d)
	{
		if (_year > d._year)
		{
			return 1;
		}
		if (_year == d._year)
		{
			if (_month > d._month)
			{
				return 1;
			}
			if (_month == d._month)
			{
				if (_day > d._day)
				{
					return 1;
				}
				if (_day == d._day)
				{
					return 0;
				}
			}
		}
		return 0;
	}
	bool operator >= (const Date& d)
	{
		return ((*this > d) || (*this == d));
	}
	bool operator < (const Date& d)
	{
		return !(*this >= d);
	}
	bool operator <= (const Date& d)
	{
		return !(*this>d);
	}
	//判断是否是闰年
	static int Leap_Year(int year)
	{
		if ((year % 400 == 0) || ((year % 4 == 0) && (year % 100 != 0)))
			return 1;
		else
			return 0;
	}
	//用数组比switch case 语句更简洁
	static int GetMonthDay(int year, int month)
	{
		static int Months[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
		if (Leap_Year(year) == 1)
		{
			Months[2] = 29;
		}
		else
		{
			Months[2] = 28;
		}
		return Months[month];
	}
	// 计算一个日期加减一个天数以后的日期。注意:加的天数有可能是负数
	Date operator+(int day)
	{
		Date d(*this);
		d._day += day;
		while (d._day<0)
		{
			if (d._month == 1)
			{
				d._year--;
				d._month = 12;
			}
			else
			{
				d._month--;
			}
			d._day += GetMonthDay(d._year, d._month);
		}
		while (d._day > GetMonthDay(d._year, d._month))
		{
			d._day -= GetMonthDay(d._year, d._month);
			if (d._month == 12)
			{
				d._year++;
				d._month = 1;
			}
			else
			{
				d._month++;
			}
		}
		return d;
	}
	Date operator-(int day)
	{
		Date d(*this);
		if (day < 0)
		{
			day = 0 - day;
			return *this + day;
		}
		d._day -= day;
		if (d._day < 0)
		{
			while (d._day<0)
			{
				if (d._month == 1)
				{
					d._year--;
					d._month = 12;
				}
				else
				{
					d._month--;
				}
				d._day += GetMonthDay(d._year, d._month);
			}
		}
		return d;
	}
	Date& operator-=(int day)
	{
		(*this) = (*this - day);
		return *this;
	}
	Date& operator+=(int day)
	{
		(*this) = (*this + day);
		return *this;
	}

	const Date& operator++()// 前置++
	{
		(*this) = (*this + 1);
		return *this;
	}
	Date operator++(int)		// 后置++
	{
		Date tmp(*this);
		(*this) = (*this + 1);
		return tmp;
	}
	const Date& operator--()	// 前置--
	{
		(*this) = (*this - 1);
		return *this;
	}
	Date operator--(int)		// 后置--
	{
		Date tmp(*this);
		(*this) = (*this - 1);
		return tmp;
	}

	// 两个日期相加没有意义
	// 计算两个日期相减以后的差的天数
	int operator-(const Date& d)
	{
		Date d1(*this);
		Date d2(d);
		if (d1 > d2)
		{
			d1 = d;
			d2 = *this;
		}
		int count = 0;
		while (d1 != d2)
		{
			d1++;
			++count;
		}
		return count;
	}
	friend istream& operator>>(istream& is, Date& d);
	friend ostream& operator<<(ostream& os, Date& d);
private:
	int _year;
	int _month;
	int _day;

};
//输入运算符的重载
istream& operator>>(istream& is, Date& d)
{
	cout << "请依次输入年-月-日" << endl;
	is >> d._year;
	is >> d._month;
	is >> d._day;
	return is;
}
//输出运算符的重载
ostream& operator<<(ostream& os, Date& d)
{
	os << d._year << "-";
	os << d._month << "-";
	os << d._day;
	return os;
}
void PromptInfo()
{
	cout << "|**********日期计算器************|"<<endl;
	cout << "|********1.退后几天的日期 *******|"<< endl;
	cout << "|********2.计算日期差************|" << endl;
	cout << "|********0.退出******************|" << endl;
	cout << "|********************************|" << endl;
}

int main()
{
	Date d1, d2;
	while (1)
	{
		PromptInfo();
		int in = 0, day = 0;
		cout << "请选择:" << endl;
		cin >> in;
		switch (in)
		{
		case 0:
			cout << "Exit!" << endl;
			return 0;
		case 1:
			cin >> d1;
			if (d1.CheakDate()==0)
			{
				cout << "非法日期,请重新输入!" << endl;
				break;
			}
			cout << "请输入退后的天数" << endl;
			cin >> day;
			cout << d1 + day << endl;
			break;
		case 2:
			cin >> d1;
			if (d1.CheakDate()==0)
			{
				cout << "非法日期,请重新输入!" << endl;
				break;
			}
			cin >> d2;
			if (d2.CheakDate()==0)
			{
				cout << "非法日期,请重新输入!" << endl;
				break;
			}
			cout << d1 - d2 << endl;
			break;
		default:
			cout << "输入选项错误,请重新输入!" << endl;
		}
	}
	return 0;
}</span>

  • 2
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
#include int main (void) { int year,month,j,i,day1,day2,one1,one2,w; printf("enter a year:"); scanf("%d",&year); printf("\n\n"); printf("---------------------%d---------------------\n\n",year); one1=((year-1)*365+(year-1)/4-(year-1)/100+(year-1)/400+1)%7; for(month=1;month<=12;month+=2) { printf(" ",month,year); printf(" \n",month+1,year); printf("-------------------- --------------------\n"); printf("日 一 二 三 四 五 六 日 一 二 三 四 五 六\n"); switch(month) { case 1: case 3: case 5: case 7: case 8: case 10: case 12: day1=31;break; case 4: case 6: case 9: case 11:day1=30;break; default:if(!(year%4)&&(year0)||!(year%400)) day1=29; else day1=28; } for(j=1;j<=one1;j++) { if(one1==7) break; else printf(" "); } for(i=1;i<=7-one1;i++) printf("%2d ",i); printf(" "); switch(month+1) { case 1: case 3: case 5: case 7: case 8: case 10: case 12: day2=31;break; case 4: case 6: case 9: case 11:day2=30;break; default:if(!(year%4)&&(year0)||!(year%400)) day2=29; else day2=28; } one2=(one1+day1)%7; for(j=1;j<=one2;j++) { if(one2==7) break; if(j!=7) printf(" "); } for(i=1;i<=7-one2;i++) printf("%2d ",i); printf("\n"); for(i=8-one1;i<=14-one1;i++) printf("%2d ",i); printf(" "); for(i=8-one2;i<=14-one2;i++) printf("%2d ",i); printf("\n"); for(i=15-one1;i<=21-one1;i++) printf("%2d ",i); printf(" "); for(i=15-one2;i<=21-one2;i++) printf("%2d ",i); printf("\n"); for(i=22-one1;i<=28-one1;i++) printf("%2d ",i); printf(" "); for(i=22-one2;i<=28-one2;i++) printf("%2d ",i); printf("\n"); for(i=29-one1;i<=35-one1&&i<=day1;i++) printf("%2d ",i); printf(" "); for(w=1;w<=35-day1-one1;w++) printf(" "); for(i=29-one2;i<=35-one2&&i<=day2;i++) printf("%2d ",i); printf("\n"); for(i=36-one1;i<=day1;i++) printf("%2d ",i); for(w=1;w<=35-day1-one1;w++) printf(" "); if(day1==31&&(one1==4||one1==3||one1==2||one1==1||one1==7)) printf(" "); if(day1==30&&(one1==4||one1==3||one1==2||one1==1||one1==7)) printf(" "); for(i=36-one2;i<=day2;i++) printf("%2d ",i); printf("\n-------------------- --------------------\n\n"); printf("\n"); one1=(one2+day2)%7; } printf("---------------------%d---------------------\n",year); getchar(); printf("按任意键退出"); getchar(); return 0; }

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值