Assignment #62

Code

    /// Name: Ian Stanko
    /// Period: 5
    /// Program Name: DiceDoubles
    /// File Name: DiceDoubles.java
    /// Date Finished: 1/4/2016
    
    import java.util.Random;
    
    public class DiceDoubles
    {
        public static void main(String[] args)
        {
            
            Random r = new Random();
            
            int r1, r2;
            double total;
            
            r1 = 1 + r.nextInt(6);
            r2 = 1 + r.nextInt(6);
            total = r1 + r2;
            
            System.out.println( "Welcome to the best dice game ever!!!!" );
            System.out.println( "" );
            System.out.println( "Roll 1: " + r1 );
            System.out.println( "Roll 2: " + r2 );
            System.out.println( "Total: " + total );
            
            while ( r1!= r2)
            {
                r1 = 1 + r.nextInt(6);
                r2 = 1 + r.nextInt(6);
                total = r1 + r2;
            
                System.out.println( "Welcome to the best dice game ever!!!!" );
                System.out.println( "" );
                System.out.println( "Roll 1: " + r1 );
                System.out.println( "Roll 2: " + r2 );
                System.out.println( "Total: " + total );
            
            }
        }
    }
        

    

Picture of the output

Assignment 62