可爱外套

文章
6
资源
0
加入时间
2年10月27天

时间的相加

#include using namespace std;class Time{ private: int hour; int minute; int sec; public: Time();//声明一个无参的构造函数Time /*在声明构造函数时指定默认参数*/ Time(int h,int m,int s):hour(h),minute(m),sec(s)//