设计一个日期类Date,私有成员数据年(year)、月(month)、日(day),公有成员函数有(1)print 用于输出年月日 (2) init用于初始化年月日。并在主函数中进行测试
时间: 2024-05-09 22:19:00 浏览: 155
c++编程练习五.docx
以下是Date类的设计:
```c++
#include <iostream>
using namespace std;
class Date {
private:
int year, month, day;
public:
void print() {
cout << year << "-" << month << "-" << day << endl;
}
void init(int y, int m, int d) {
year = y;
month = m;
day = d;
}
};
```
在主函数中测试:
```c++
int main() {
Date d;
d.init(2021, 5, 26);
d.print();
return 0;
}
```
输出结果为:
```
2021-5-26
```
阅读全文