-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTime.cpp
More file actions
78 lines (62 loc) · 1.1 KB
/
Time.cpp
File metadata and controls
78 lines (62 loc) · 1.1 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include "Time.h"
Time_::Time_()
{
h = 0; m = 0;
}
Time_::Time_(const int& h, const int& m)
{
this->h = h;
this->m = m;
}
Time_& Time_::operator--()
{
// TODO: insert return statement here
this->m--; return *this;
}
Time_& Time_::operator--(int n)
{
// TODO: insert return statement here
cin >> n;
this->m = m - n; return *this;
}
Time_& Time_::operator++()
{
// TODO: insert return statement here
this->m++; return *this;
}
Time_& Time_::operator++(int n)
{
// TODO: insert return statement here
cin >> n;
this->m = m + n;
return *this;
}
void Time_::setTime(int h, int m)
{
cout << "Ââåäèòå ÷àñû ";
cin >> h;
cout << "Ââåäèòå ìèíóòû ";
cin>>m;
}
int Time_::geTime()
{
return h,m;
}
void Time_::ShowT()
{
cout << h << " : " << m << endl;
}
ostream& operator<<(ostream& os, Time_& t)
{
// TODO: insert return statement here
os << t.h << ":" << t.m;
return os;
}
istream& operator>>(istream& is, Time_& t)
{
cout << "Ââåäèòå ÷àñû ";
cin >> t.h;
cout << "Ââåäèòå ìèíóòû ";
cin >> t.m;
return is;
}