时间的相加 #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)// Other 2024-01-05 40 点赞 0 评论 60 浏览