文件名称:Lab7_3
介绍说明--下载内容均来自于网络,请自行研究使用
定义一个Date类满足如下要求:
数据成员:年、月、日
成员函数:
1、构造函数,Date(int y=2012, int m=1 , int d=1)
2、用下面的格式输出日期:日/月/年 void Display()
3、可运行在日期上加一天操作 void AddOneDay()
4、设置日期 void SetDay(int y,int m,int d)
5、析构函数,在其中输出“析构函数”。
书写主函数,定义对象,调用AddOneDay()函数,调用输出函数Display(),输出日期。接着,调用设置日期的函数,设置为2012年2月28日,再调用AddOneDay()函数,调用输出函数Display(),输出日期。
-Define a Date class to meet the following requirements: data members: year, month, day member functions: 1, constructors, Date (int y = 2012, int m = 1, int d = 1) 2, the date in the following format output : day/month/year void Display () 3, can be run on the date plus one day operate void AddOneDay () 4, to set the date void SetDay (int y, int m, int d) 5, destructor, in wherein the output " destructor." Writing the main function, define the object, call the AddOneDay () function, calling the output function Display (), output date. Then, call the function to set the date, set to February 28, 2012, and then call AddOneDay () function, calling the output function Display (), output date.
数据成员:年、月、日
成员函数:
1、构造函数,Date(int y=2012, int m=1 , int d=1)
2、用下面的格式输出日期:日/月/年 void Display()
3、可运行在日期上加一天操作 void AddOneDay()
4、设置日期 void SetDay(int y,int m,int d)
5、析构函数,在其中输出“析构函数”。
书写主函数,定义对象,调用AddOneDay()函数,调用输出函数Display(),输出日期。接着,调用设置日期的函数,设置为2012年2月28日,再调用AddOneDay()函数,调用输出函数Display(),输出日期。
-Define a Date class to meet the following requirements: data members: year, month, day member functions: 1, constructors, Date (int y = 2012, int m = 1, int d = 1) 2, the date in the following format output : day/month/year void Display () 3, can be run on the date plus one day operate void AddOneDay () 4, to set the date void SetDay (int y, int m, int d) 5, destructor, in wherein the output " destructor." Writing the main function, define the object, call the AddOneDay () function, calling the output function Display (), output date. Then, call the function to set the date, set to February 28, 2012, and then call AddOneDay () function, calling the output function Display (), output date.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
Lab7_3.cpp