Assignemnt #57 Dice

Code

    ///Name: Joshua Pell
    ///Period: 6
    ///Project Name: Dice
    ///File Name: Dice.java
    ///Date: 12/4/2015
    
 import java.util.Random;
    
    public class Dice
    {
        public static void main( String [] args)
        {
            Random r = new Random();
            int d1= r.nextInt(6)+1,d2= r.nextInt(6)+1;
            System.out.println("Here comes the dice");
            System.out.println("Roll #1: "+d1);
            System.out.println("Roll #2: "+d2);
            System.out.println("The total is "+(d1+d2+"!"));
        }
    }
    

Picture of the output

Assignment 57