设计一个时间类Time, 包括时,分,秒等私有数据成员。要求实现时间的基本运算,一个时间加上另一个时间。。

#include <iostream.h>
class Time
{
 int hour;  //时数
 int minute; //分数
 int second; //秒数
public:
 //Time() {};                    //构造函数
 Time(int h=0,int m=0,int s=0) //重载构造函数
 {
  hour=h;minute=m;second=s;
 }
 void sethour(int h) { hour=h;}
 void setminute(int m) {minute=m;}
 void setsecond(int s) {second=s;}
 int gethour() {return hour;}
 int getminute() {return minute;}
 int getsecond() {return second;}
 Time &operator+(Time);
 Time &operator-(Time);
 void disp()
 {
  cout << hour << ":" << minute << ":" << second << endl;
 }
};
Time &Time::operator +(Time t)
{
 int carry,hh,mm,ss;
 ss=getsecond()+t.getsecond();
 if(ss>60)
 {
  ss-=60;
  carry=1;  //秒数大于69,则需进一位
 }
 else
  carry=0;
 mm=getminute()+t.getminute()+carry;
 if(mm>60)
 {
  mm-=60;
  carry=1; //分数大于69,则需进一位
 }
 else carry=0;
 hh=gethour()+t.gethour()+carry;
 if(hh>24)
  hh-=24;
 //static Time result(hh,mm,ss);  //构造一个静态对象result
 return *this;//result;
}
Time &Time::operator -(Time t)
{
 int borrow,hh,mm,ss;
 ss=getsecond()-t.getsecond();
 if(ss<0)
 {
  ss+=60;
  borrow=1; //秒数小于0,则需要从分数借一位
 }
 else
  borrow=1;
 mm=getminute()-t.getsecond()-borrow;
 if(mm<0)
 {
  mm+=60;
  borrow=1; //秒数小于0,则需要从分数借一位
 }
 else
  borrow=0;
 hh=gethour()-t.getsecond()-borrow;
 if(hh<0)
 {
  hh+=24;
  //static Time result(hh,mm,ss);  //构造一个静态对象result
  return *this;
 }
}

 void main()
 {
  Time now(2,24,39);
  Time start(0,17,55);
  Time t1=now-start,t2=now+start;
  cout << "时间1:";now.disp();
  cout << "时间2:";start.disp();
  cout << "相差:";t1.disp();
  cout << "相加:";t2.disp();
 }

好的,我来设计一个时间Time来满足你的需求: ```cpp #include<iostream> using namespace std; class Time { private: int hour, minute, second; public: Time() { // 默认构造函数 hour = 0; minute = 0; second = 0; } Time(int h, int m, int s) { // 有参构造函数 hour = h; minute = m; second = s; } Time operator+(const Time& t) const { // 重载 + 运算Time sum; sum.second = second + t.second; sum.minute = minute + t.minute + sum.second / 60; sum.hour = hour + t.hour + sum.minute / 60; sum.second %= 60; sum.minute %= 60; sum.hour %= 24; return sum; } Time operator-(const Time& t) const { // 重载 - 运算符 int total1 = hour * 3600 + minute * 60 + second; int total2 = t.hour * 3600 + t.minute * 60 + t.second; int diff = total1 - total2; if (diff < 0) { diff += 24 * 3600; // 如果小于0,加上一天的数 } Time result; result.hour = diff / 3600; diff = diff % 3600; result.minute = diff / 60; diff = diff % 60; result.second = diff; return result; } void showTime() { // 显示时间 cout << hour << ":" << minute << ":" << second << endl; } }; int main() { Time t1(12, 30, 0); Time t2(1, 20, 30); Time sum = t1 + t2; Time diff = t1 - t2; cout << "t1 = "; t1.showTime(); cout << "t2 = "; t2.showTime(); cout << "t1 + t2 = "; sum.showTime(); cout << "t1 - t2 = "; diff.showTime(); return 0; } ``` 上述代码定义了一个Time包括三个私有成员hour、minute、second,和两个构造函数,以及重载的加法和减法运算符。其中,重载的加法运算符返回一个新的Time对象,表示两个时间相加的结果;重载的减法运算符也返回一个新的Time对象,表示两个时间相减的结果。最后,我们在主函数中测试了一下这两个运算符的功能,输出了两个时间相加和相减的结果。 注意,为了保证时间的正确性,我们在重载加法和减法运算特别处理了进位和借位的情况。同,在重载减法运算,我们还特别处理了时间相减小于零的情况,即先加上一天的数,再计算差值。 希望这个时间能够满足你的需求!
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值