求大神解答这道C++编程题,谢谢~(我刚开始学,很多基础题都不会做,求帮忙解答)
1个回答
展开全部
//#include "stdafx.h"//If the vc++6.0, with this line.
#include <iostream.h>
#include <iomanip.h>
class Time{
public:
Time(int hour,int minu,int seco){
h=hour,m=minu,s=seco;
}
void myshow(void){
cout << setw(2) << setfill('0') << h << ':';
cout << setw(2) << setfill('0') << m << ':';
cout << setw(2) << setfill('0') << s << endl;
}
private:
int h,m,s;
};
int main(int argc,char *argv[]){
int h,m,s;
cout << "Input hours, minutes & seconds:\n";
cin >> h >> m >> s;
Time t(h,m,s);
t.myshow();
return 0;
}
更多追问追答
追问
谢谢~
可以再问你一道题吗?求圆柱体体积的~
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询