Skip to content

Instantly share code, notes, and snippets.

@everblut
Created February 24, 2012 22:07
Show Gist options
  • Save everblut/1904092 to your computer and use it in GitHub Desktop.
Save everblut/1904092 to your computer and use it in GitHub Desktop.
Randoms
import java.lang.Math;
public class Randoms {
public static int NumerosAleatorios(int Min, int Max){
return (Min + (int)(Math.random() * ((Max-Min) + 1)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment