-
Notifications
You must be signed in to change notification settings - Fork 127
/
TempoDeJogo.java
35 lines (27 loc) · 961 Bytes
/
TempoDeJogo.java
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
// Tempo de Jogo
/*
Tento como base a hora inicial e final de um jogo, calcule a duração do dele,
sabendo que o mesmo pode começar em um dia e terminar em outro, tendo uma
duração mínima de, 60 minutos e máxima de 24 horas.
- Entrada
A entrada contém dois valores inteiros representando a hora de início e a hora
de fim do jogo.
- Saída
Apresente a duração do jogo conforme exemplo abaixo.
*/
import java.util.Scanner;
import java.io.IOException;
public class TempoDeJogo {
public static void main(String[] args) {
Scanner leitor = new Scanner(System.in);
int hInicial = leitor.nextInt();
int hFinal = leitor.nextInt();
if (hInicial > hFinal) {
System.out.println("O JOGO DUROU " + (24 - (hInicial - hFinal)) + " HORA(S)");
} else if (hFinal > hInicial) {
System.out.println("O JOGO DUROU " + (hFinal - hInicial) + " HORA(S)");
} else {
System.out.println("O JOGO DUROU 24 HORA(S)");
}
}
}