Advertisement
JoshJurban

Exercise 2.11

Sep 25th, 2014
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. package chaptertwo;
  2.  
  3. import java.util.Random;
  4.  
  5. public class DieSimulator {
  6.  
  7.     public static void main(String[] args)
  8.     {
  9.         Random randGenerator = new Random();
  10.         int someRandomNumber = randGenerator.nextInt(6);
  11.         System.out.println(someRandomNumber+1);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement