Skip to content

Commit 5c30131

Browse files
committed
Game Time with Minutes 1047
1 parent 666eaa5 commit 5c30131

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

Uri online judge/1047

18.4 KB
Binary file not shown.

Uri online judge/1047.cpp

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Game Time with Minutes 1047
2+
#include <iostream>
3+
using namespace std;
4+
5+
int main(){
6+
int start_h, start_m, final_h, final_m, hour, minutes;
7+
cin >> start_h >> start_m >> final_h >> final_m;
8+
hour = final_h - start_h;
9+
10+
if (hour < 0){
11+
hour = 24 + (final_h - start_h);
12+
}
13+
14+
minutes = final_m - start_m;
15+
if (minutes < 0)
16+
{
17+
minutes = 60 + (final_m - start_m);
18+
hour--;
19+
}
20+
if (start_h == final_h && start_m == final_m){
21+
cout << "O JOGO DUROU 24 HORA(S) E 0 MINUTO(S)\n";
22+
}else{
23+
cout << "O JOGO DUROU "<< hour <<" HORA(S) E "<< minutes <<" MINUTO(S)\n";
24+
}
25+
return 0;
26+
}

0 commit comments

Comments
 (0)