Skip to content

Instantly share code, notes, and snippets.

@josecarlosqs
Created September 13, 2014 11:09
Show Gist options
  • Save josecarlosqs/ab86d413c0f309ee25a7 to your computer and use it in GitHub Desktop.
Save josecarlosqs/ab86d413c0f309ee25a7 to your computer and use it in GitHub Desktop.
Entero aleatorio JAVA
public int genAleatorio(int a, int b){
int min = Math.min(a,b);
int max = Math.max(a,b);
return (int)(Math.random*(max-min+1)+min);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment