Answer to Question #275699 in C++ for Jk04

Question #275699

Create class time create t1, t2,t3 as object of time. Write a c++ program to read t1 and t2 as hours, seconds and minutes. Assume hours, seconds, minutes as integer. Add these times t1 and t2 and store the result in time t3. Print the value of t3

1
Expert's answer
2021-12-05T13:07:37-0500
#include <iostream>
using namespace std;
class time {
public:
 time(int h, int m, int s)
   :hours(h), minutes(m), seconds(s){}
 friend time& operator+(const time& lhs, const time& rht) {
   return time(lhs.hours+rhs.hours, lhs.minutes+rhs.minutes, lhs.seconds+rhs.second);
 }
 int hours;
 int minutes;
 int seconds;
};

int main() {
  time t1(3, 4, 5);
  time t2(0, 0, 34);
  time t3 = t1 + t2;
  cout<<t3.hours<<":"<<t3.minues<<":"<<t3.seconds<<"\n";
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment