设计一个名为Date的类。该类应该以三个整数存储日期:月,日和年。
程序应该有一个构造函数来初始化这三个整数的值。
该类还应该有三个成员函数setMonth,setDate和setYear来设置三个整数的值。
该类应该有一个额外的showDate方法,它以下列格式显示日期:05/01/2014
通过编写实现它的完整程序来演示该课程。
使用以下主要方法测试您的课程
输出应为:
12/25/2012
6/16/2012
主要方法
int main()
{
// Create a Date object and initialize it
// using the overloaded constructor.
Date today(12, 25, 2012);
// Show the date
today.showDate();
// Store a new month, day, and year in the object.
today.setMonth(6);
today.setDay(16);
today.setYear(2012);
// Show the date
today.showDate();
return 0;
}
答案 0 :(得分:2)
这对你来说应该不难!这是标题!所有你必须要做的就是现在写下这些功能!
class Date{
public:
Date();
void SetDay(int day);
void SetMonth(int month);
void SetYear(int year);
int GetDay();
int GetMonth();
int GetYear();
private:
int m_day;
int m_month;
int m_year;
};