-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulacao_relogio.txt
62 lines (49 loc) · 1.33 KB
/
simulacao_relogio.txt
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
#include <iostream>
using namespace std;
class Relogio {
public:
int hora, minuto, segundo;
Relogio(int h, int m, int s) {
hora = h;
minuto = m;
segundo = s;
}
void setHora(int h, int m, int s) {
hora = h;
minuto = m;
segundo = s;
}
void avancar() {
segundo++;
if (segundo == 60) {
segundo = 0;
minuto++;
if (minuto == 60) {
minuto = 0;
hora++;
if (hora == 24) {
hora = 0;
}
}
}
}
void getHora(int &h, int &m, int &s) {
h = hora;
m = minuto;
s = segundo;
}
};
int main() {
int hora, minuto, segundo;
cout << "Digite a hora, minuto e segundo iniciais: ";
cin >> hora >> minuto >> segundo;
Relogio obj(hora, minuto, segundo);
cout << "Horário Inicial: ";
obj.getHora(hora, minuto, segundo);
cout << "Hora: " << hora << " Minuto: " << minuto << " Segundo: " << segundo << endl;
obj.avancar();
cout << "Horário após avançar 1 segundo: ";
obj.getHora(hora, minuto, segundo);
cout << "Hora: " << hora << " Minuto: " << minuto << " Segundo: " << segundo << endl;
return 0;
}