Advertisement
andrewpr52

NumberGame (4) - LevelThree class

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