📄 fig07_08.cpp
字号:
// Fig. 7.8: fig07_08.cpp
// Cascading member function calls together
// with the this pointer
#include <iostream.h>
#include "time6.h"
int main()
{
Time t;
t.setHour( 18 ).setMinute( 30 ).setSecond( 22 );
cout << "Military time: ";
t.printMilitary();
cout << "\nStandard time: ";
t.printStandard();
cout << "\n\nNew standard time: ";
t.setTime( 20, 20, 20 ).printStandard();
cout << endl;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -