Porque usar
c1.deposita(random.nextInt(10000) + random.nextDouble());
ao inves de:
c1.deposita(random.netxInt(1000));
```
Porque usar
c1.deposita(random.nextInt(10000) + random.nextDouble());
ao inves de:
c1.deposita(random.netxInt(1000));
```
Para poder gerar números com casas decimais, Thales.
Usando apenas
c1.deposita(random.netxInt(1000));
Teremos apenas números como:
53
67
28
88
Já usando
c1.deposita(random.nextInt(10000) + random.nextDouble());
Teremos números como:
53.29
67.98
28.11
88.63
Espero ter ajudado.
Abraço.