封装一个时间类Time,用于时间处理的相关功能,支持以下操作:
1. Time::Time(int,int,int)构造方法:传递时分秒的三个参数构造对象。
2. Time::showTime()方法:输出“hh:mm:ss”,不足两位的要前面补0。
你设计一个时间类Time,使得main()函数能够正确运行。
函数调用格式见append.cc。
append.cc中已给出main()函数。
标签:pen pac stream 传递 时分秒 tput ++i append 宽度
#include<iostream>
#include<iomanip>
using
namespace
std;
class
Time
{
private
:
int
x,y,z;
public
:
Time(
int
a,
int
b,
int
c){x=a,y=b,z=c;}
void
showTime(){cout<<setfill(
‘0‘
)<<setw(2)<<x<<
":"
<<setfill(
‘0‘
)<<setw(2)<<y<<
":"
<<setfill(
‘0‘
)<<setw(2)<<z<<endl;}
};
int
main()
{
int
cases;
cin>>cases;
for
(
int
i = 1; i <= cases; ++i)
{
int
hour, minute, second;
cin>>hour>>minute>>second;
Time t(hour, minute, second);
t.showTime();
}
}
标签:pen pac stream 传递 时分秒 tput ++i append 宽度
原文地址:http://www.cnblogs.com/TogetherLaugh/p/6544653.html