Does anyone know how to generate random numbers every minute?
Right now I only have one for where it sends 3 data just for nothing, but it sends them instantly, and I need every minute to throw a random number at me.
for(int i =0; i<3; i++){
int numero = (int) (Math.random() * 100) + 1;
System.out.println(numero);
}
Result is:
56
32
49
BUILD SUCCESSFUL (total time: 0 seconds)