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
#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";
}
Comments
Leave a comment