【C++】万年历(时间计数器)

/******************************************************************************************
Date.hpp:
Copyright (c) Bit Software, Inc.(2013), All rights reserved.

Purpose:
声明并实现一个万年历类【腾讯面试题】

Author:
xxx

Created Time:
2015-4-26
******************************************************************************************/
//class Time
//{
//public:
//	Time(int hour);
//	Time(const Time& t);
//	Time& operator=(const Time& t);
//
//private:
//	int _hour;
//}
//
//class Date
//{
//public:
//	// 初始化列表进行初始化。 
//	Date(int year = 1900, int month = 1, int day = 1);
//	Date(const Date& d);
//
//	Date& operator= (const Date& d);
//	void Display();
//public:
//	//
//	// 比较日期的运算符重载
//	//
//	bool operator == (const Date& d);
//	bool operator != (const Date& d);
//	bool operator > (const Date& d);
//	bool operator >= (const Date& d);
//	bool operator < (const Date& d);
//	bool operator <= (const Date& d);
//
//	//
//	// 计算一个日期加减一个天数以后的日期。
//	//
//	Date operator+(int day);
//	Date operator-(int day);
//	Date& operator-=(int day);
//	Date& operator+=(int day);
//
//	const Date& operator++();	// 前置++
//	Date operator++(int);		// 后置++
//	const Date& operator--();	// 前置--
//	Date operator--(int);		// 后置--
//
//	//
//	// 两个日期相加没有意义
//	// 计算两个日期相减以后的差的天数
//	//
//	int operator-(const Date& d);
//private:
//	int _year;
//	int _month;
//	int _day;
//
//	const int _testConst;
//	int& _testRef;
//	Time _t;
//};
//
//void TestDate()
//{}
#include<iostream>
using namespace std;
class Time
{
public:
	Time(int hour)
	{
		_hour = hour;
	}
	Time(const Time& t)
	{
		_hour = t._hour;
	}
	Time& operator=(const Time& t)
	{
		_hour = t._hour;
		return *this;
	}
	void Display()
	{
		cout << _hour << endl;
	}
private:
	int _hour;
};
int Tab[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
class Date
{
public:
	// 初始化列表进行初始化。 
	Date(int year = 1900, int month = 1, int day = 1)
		:_year(year),
		_month(month),
		_day(day),
		_testConst(2222),
		_testRef(_day),
		_t(12)
	{
		Check(year,month,day);
	}
	void Check(int year,int month ,int day )
	{
		if (year < 1900 || month<1 || month>12 ||
			day<1 || day>Tab[Getmonth(year, month)])
		{
			cout << "Invalid Date" << endl;
			_year = 1900;
			_month = 1;
			_day = 1;
		}
	}
	Date(const Date& d) 
		:_year ( d._year),
		_month (d._month),
		_day (d._day),
		_testConst(2222),
		_testRef(_day),
		_t(12)
	{}

	Date& operator= (const Date& 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)
		{
			if (_month == d._month)
			{
				return (_day > d._day);
			}
			return (_month > d._month);
		}
		return (_year > d._year);
	}
	
	bool operator >= (const Date& d)
	{
		return (*this > d||*this == d);
	}
	bool operator < (const Date& d)
	{
		return !(*this > d || *this == d);
	}
	bool operator <= (const Date& d)
	{
		return !(*this > d);
	}
//
//	//
	// 计算一个日期加减一个天数以后的日期。
	//
	int leap(int year)
	{
		if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
		{
			return 1;
		}
		return 0;
	}
	int Getmonth(int year, int month)
	{
		if (leap(year))
		{
			Tab[2] = 29;
		}
		else
		{
			Tab[2] = 28;
		}
		return month;
	}
	
	Date operator+(int day)
	{
		Date tmp(*this);
		if (day<0)
		{
			day = 0 - day;
			return *this - day;
		}
		tmp._day += day;
		while (tmp._day >Tab[Getmonth(tmp._year,tmp._month)])
		{
			tmp._day -= Tab[tmp._month];
			tmp._month = tmp._month + 1;
			if (tmp._month > 12)
			{
				tmp._year = tmp._year + 1;
				tmp._month = 1;
			}
		}
		return tmp;
	}
	Date operator-(int day)
	{
		Date tmp(*this);
		if (day < 0)
		{
			day = 0 - day;
			return *this + day;
		}
		tmp._day -= day;
		while (tmp._day <=0)
		{
			if (tmp._month == 1)
			{
				tmp._year--;
				tmp._month = 12;
			}
			else
			{
				tmp._month--;
			}
			tmp._day += Tab[Getmonth(tmp._year, tmp._month)];
		}
		return tmp;
	}
	Date& operator+=(int day)
	{
		*this=*this +day;
		return *this;
	}
	Date& operator-=(int day)
	{
		*this = *this - day;
		return *this;
	}

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

	// 两个日期相加没有意义
	// 计算两个日期相减以后的差的天数
	int operator-(const Date& d)
	{
		int count = 0;
		Date x1 = *this; 
		Date x2 = d;
		if (*this>d)
		{
			x1 = d;
			x2 = *this;
		}
		while (x1 != x2)
		{
			x1 += 1;
			count++;
		}
		return count;
	}
	friend istream &operator>>(istream &is, Date &d);
	friend ostream &operator<<(ostream &is, const Date &d);
	
private:
	int _year;
	int _month;
	int _day;
	const int _testConst;
	int& _testRef;
	Time _t;
};
istream &operator>>(istream &is, Date &d)
{
	is >> d._year;
	is >> d._month;
	is >> d._day;
	d.Check(d._year, d._month, d._day);
	return is;
}
ostream &operator<<(ostream &os, const Date &d)
{
	os << d._year<<"-";
	os << d._month<<"-";
	os << d._day;
	return os;
}
int main()
{
	Date op1(2007, 2, 28);
	Date op2(2007, 12, 9);
	/*cout << (op1 == op2) << endl;
	cout << (op1 != op2) << endl;
	cout << (op1 <=op2) << endl;
	cout << (op2 - op1) << endl;
	op2.Display();*/
	/*op1 = op1.operator-(650);
	op1.Display();*/
	op2 = op1.operator+(300);
	op2.Display();
	op2 = op2.operator-(300);
	op2.Display();
	cin >> op1;
	cout << op1;
	system("pause");
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 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、付费专栏及课程。

余额充值