初学者问一道C++的改写题目

#include <iostream>

using namespace std;

class Time

{

public:

int hour;

int minute;

int sec;


};

int main()

{

Time t1;

cin >> t1.hour;

cin >> t1.minute;

cin >> t1.sec;

cout << t1.hour << ":" << t1.minute << ":" << t1.sec;

return 0;

}

将上述C++程序改写为:

1:将数据成员改为私有的

2:将输入和输出的功能改为由成员函数实现

3:在类体内定义成员函数

谢谢了!

掌门飞哥
浏览 1895回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP