Solución:
Convierte abc en un número entero.
(int)(Math.random()*100);
Para que su código se compile, debe convertir el resultado en un int.
int abc = (int) (Math.random() * 100);
Sin embargo, si en cambio usa el java.util.Random clase tiene un método incorporado para ti
Random random = new Random();
int abc = random.nextInt(100);
Como alternativa, si no hay una razón específica para usar Math.random()
, usar Random.nextInt()
:
import java.util.Random;
Random rnd = new Random();
int abc = rnd.nextInt(100); // +1 if you want 1-100, otherwise will be 0-99.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)