Advertisement
andrewpr52

NumberGame (3) - LevelTwo class

Oct 20th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. import java.util.Random;
  2.  
  3. public class LevelTwo
  4. {
  5.  
  6.     public static int randInt()
  7.     {
  8.         Random rand = new Random();
  9.        
  10.         int randomNum = rand.nextInt(50) + 1;
  11.        
  12.         return randomNum;
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement