Advertisement
ralphdc09

itf106.pr.wk02.number02

Jul 30th, 2021
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package pr.wk02;
  2.  
  3. public class number02 {
  4.     public static void main(String[] args) {
  5.         int die1;
  6.         int die2;
  7.         int total;
  8.  
  9.         die1 = (int) (Math.random() * 6) + 1;
  10.         die2 = (int) (Math.random() * 6) + 1;
  11.         total = die1 + die2;
  12.  
  13.         System.out.println("The first die comes up " + die1);
  14.         System.out.println("The second die comes up " + die2);
  15.         System.out.println("Your total roll is " + total);
  16.     }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement