Comentario Gnrer Un Nombre Alatoire en Java
<p>Random rand = new Random();
int nombreAleatoire = rand.nextInt(max - min + 1) + min;</p>
Frightened Flamingo
<p>Random rand = new Random();
int nombreAleatoire = rand.nextInt(max - min + 1) + min;</p>