#include <iostream>
using namespace std;
class Time{
int hours, minutes;
public:
Time(){}
Time(int hrs, int min){
hours = hrs;
minutes = min;
if(hours > 23) hours = 23;
if(minutes > 59) minutes = 59;
}
void show(){
cout<<this->hours<<":";
if(this->minutes < 10) cout<<0;
cout<<this->minutes<<endl;
}
Time add(int m){
this->minutes += m;
while(minutes >= 60){
this->minutes -= 60;
this->hours++;
}
while(this->hours > 23) this->hours -= 24;
return *this;
}
};
int main(){
Time times[4] = {Time(23, 59), Time(24, 67), Time(0, 0), Time(3, 0)};
for(int i = 0; i < 4; i++) times[i].show();
cout<<endl;
times[0].add(2).show();
times[1].add(1).show();
times[2].add(60).show();
times[3].add(2881).show(); //added 48 hours and 1 minute
return 0;
}
Comments
Dear Bokang, Questions in this section are answered for free. We can't fulfill them all and there is no guarantee of answering certain question but we are doing our best. And if answer is published it means it was attentively checked by experts. You can try it yourself by publishing your question. Although if you have serious assignment that requires large amount of work and hence cannot be done for free you can submit it as assignment and our experts will surely assist you.
Could you please explain from line 13 to 26
Leave a comment