📄 tktest20.txt
字号:
#include <iostream.h>
class Time{
int houre;
int minute;
int second;
public:
_______(1)_________
{
houre=0;
minute=0;
second=0;
}
_______(2)_________
{
houre=h;
minute=m;
second=s;
}
void DispTime()
{
cout<<houre<<':'<<minute<<':'<<second<<'\n';
}
};
void main()
{
Time t1,t2(14,21,45);
t1.DispTime(); //输出: 0:0:0
t2.DispTime(); //输出: 14:21:45
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -