Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Random;
- public class DieSimulator {
- public static void main(String[] args) {
- Random dieNumber = new Random();
- int randomNumber = dieNumber.nextInt(6);
- System.out.println(randomNumber + 1);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment