Assignemnt #57 and dice

Code

    
    ///name: nick cerdan
    ///period: 6
    ///program name: Dice
    ///file name: Dice.java
    ///date finished: 10/20/15
    
    import java.util.Random;
    
    public class Dice
    {
        public static void main(String[] args)
        {
            Random r = new Random();
            
            int roll1, roll2;
            double total;
            
            roll1 = 1 + r.nextInt(6);
            roll2 = 1 + r.nextInt(6);
            total = roll1 + roll2;
            
            System.out.println("WELCOME TO THE WORLD'S BEST DICE GAME EVER!");
            System.out.println("");
            System.out.println("Roll #1: " + roll1 );
            System.out.println("Roll #2: " + roll2 );
            System.out.println("The total is " + total + "!");
        }
    }

    Assignment 57