-
Notifications
You must be signed in to change notification settings - Fork 20
/
Mundo.java
38 lines (31 loc) · 966 Bytes
/
Mundo.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
import java.util.Scanner;
class Mundo {
private CentroComercial carrefour;
private int tiempoTotal;
public Mundo(int tiempoTotal) {
carrefour = new CentroComercial();
this.tiempoTotal = tiempoTotal;
}
public void simular() {
boolean centroAbierto = true;
int minutoActual = 0;
do {
minutoActual++;
centroAbierto = minutoActual <= this.tiempoTotal;
if (llegaUnCliente()){
Cliente cliente = new Cliente();
carrefour.recibe(cliente);
}
carrefour.actualizar();
carrefour.verEstado(minutoActual);
new Scanner(System.in).nextLine();
} while (centroAbierto);
}
private boolean llegaUnCliente() {
return Math.random()<=0.4;
}
public static void main(String[] args) {
final int TIEMPO_TOTAL = 12 * 60;
new Mundo(TIEMPO_TOTAL).simular();
}
}