C:\Users\MARIO VASQUEZ\Documents\NetBeansProjects\repetirn\src\repetirn\Repetirn.java |
1
2
3
4
5
6 package repetirn;
7 import java.util.Random;
8
9
10 @author
11
12 public class Repetirn {
13
14
15 @param args
16
17 public static void main(String[] args) {
18 Random rnd0 = new Random();
19
20
21
22 int contador = (int)(rnd0.nextDouble() * 20 + 0 );
23
24
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
33 System.out.println("El numero es " + numero_aleatorio);
34
35
36 }
37 }
38
39 }
40
41