Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/11/2014, 07:18
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 5 meses
Puntos: 182
Respuesta: Cadena de int

Código Java:
Ver original
  1. public class Ejercicio2
  2. {
  3.     public void codigoPrimitiva()
  4.     {
  5.        java.util.Random randomGenerator = new java.util.Random();
  6.  
  7.        System.out.print("El numero es ");
  8.        for (int i=0; i<6; i++)
  9.        {
  10.           int numero = randomGenerator.nextInt(49)+1;
  11.           System.out.print(" " + numero);
  12.         }
  13.        
  14.        int reintegro=randomGenerator.nextInt(9)+ 1;
  15.        System.out.println(" y el reintegro es " +reintegro);
  16.    }
  17. }

Un saludo
__________________
If to err is human, then programmers are the most human of us