Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/04/2008, 03:01
taar
 
Fecha de Ingreso: diciembre-2001
Ubicación: Asuncion
Mensajes: 143
Antigüedad: 23 años
Puntos: 1
Re: Numeros aleatorios

Se me ocurre uno: primero guardas los numeros en un array y luego accede a sus indices. Deberia ser algo asi:
Código:
int[] n = {20,33,40}; 
int i = n[ (int) Math.round(Math.random()) * (n.length-1) ];
System.out.println(i);