C:\Users\MARIO VASQUEZ\Documents\NetBeansProjects\repetirn\src\repetirn\Repetirn.java
 1 /*
 2  * To change this license header, choose License Headers in Project Properties.
 3  * To change this template file, choose Tools | Templates
 4  * and open the template in the editor.
 5  */
 6 package repetirn;
 7  import java.util.Random;
 8 /**
 9  *
10  * @author MARIO VASQUEZ
11  */
12 public class Repetirn {
13 
14     /**
15      * @param args the command line arguments
16      */
17     public static void main(String[] args) {
18          Random rnd0 = new Random();
19          /* Ramdom me genera numeros aleatorios infinitos entre 0 y 1 
20          obviamente numeros double
21          */
22          int  contador  = (int)(rnd0.nextDouble() * 20  + 0 ); 
23          // obtengo un entero entre 0 y 20 
24          // y hago el ciclo 
25         for (int i=0;i<contador;i++)  
26         {
27         int min = 18 ;
28         int max = 65 ;
29         int cantidad_numeros = max - min + 1 ;
30         Random rnd = new Random();
31          int  numero_aleatorio = (int)(rnd.nextDouble() * cantidad_numeros + min );  
32         // Genero un entero entre 18 y 65 (ambos inclusive )
33          System.out.println("El numero es " + numero_aleatorio);
34              
35            
36         }
37         }
38       
39     }
40     
41