Advertisement
MrsMcLead

Untitled

Jan 27th, 2014
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.11 KB | None | 0 0
  1.  public static int random(int low, int high)
  2.   {
  3.     return (int)(Math.random() * (high - low + 1)) + low;
  4.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement