-
Notifications
You must be signed in to change notification settings - Fork 0
/
LeyendoElDiccionario.java
58 lines (51 loc) · 1.71 KB
/
LeyendoElDiccionario.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.caiomed03.aceptaelreto;
import java.util.Scanner;
public class LeyendoElDiccionario {
public static void main(String[] args) {
int segundosQueTarda, cantidadDeficiones, tiempoTotal = 0, hora, minuto, seg;
Scanner sc = new Scanner(System.in);
segundosQueTarda = sc.nextInt();
while (segundosQueTarda != 0) {
cantidadDeficiones = sc.nextInt();
while (cantidadDeficiones != 0) {
tiempoTotal += cantidadDeficiones * segundosQueTarda;
cantidadDeficiones = sc.nextInt();
}
if(tiempoTotal>60*60-1){
hora=tiempoTotal/3600;
tiempoTotal -= hora*3600;
minuto = tiempoTotal/60;
seg = tiempoTotal - minuto*60;
}
else{
hora=0;
if(tiempoTotal>59){
minuto = tiempoTotal/60;
seg = tiempoTotal%60;
}
else{
minuto=0;
seg = tiempoTotal;
}
}
if (hora > 9) {
System.out.print(hora + ":");
} else {
System.out.print("0" + hora + ":");
}
if (minuto > 9) {
System.out.print(minuto + ":");
} else {
System.out.print("0" + minuto + ":");
}
if (seg > 9) {
System.out.print(seg);
} else {
System.out.print("0" + seg);
}
System.out.print("\n");
tiempoTotal = 0;
segundosQueTarda = sc.nextInt();
}
}
}