-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7.1.cpp
61 lines (55 loc) · 975 Bytes
/
7.1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//Create a class called Time that maintains the time in 11:59:59 format. Include appropriate datamembers, constructors, and appropriate member functions in the class to set the time, update the time, etc.
#include <iostream>
using namespace std;
class Time{
public:
int h;
int m;
int s;
Time(){
h=0;
m=0;
s=0;
}
Time(int ah,int am,int as){
h=ah%12;
m=am%60;
s=as%60;
}
void updatetime(int ah,int am,int as){ h=ah%12;
m=am%60;
s=as%60;
}
void Printtime(){
if(h<10){
cout<<0;
}
cout<<h<<":";
if(m<10){
cout<<0;
}
cout<<m<<":";
if(s<10){
cout<<0;
}
cout<<s<<endl;
}
};
int main(){
int a, b, c,d,e,f;
char ans;
cout<< "Enter your time";
cin >> a>>b>>c;
Time time1(a,b,c);
time1.Printtime();
cout <<" do you want to update the time (y/n)";
cin>> ans;
if ( ans== 'y')
{
cout<< "enter the new time to update";
cin>>d>>e>>f;
time1.updatetime(d,e,f);
time1.Printtime();
}
return 0;
}