Assignemnt #62

Code

///colin hinton
///5th period
///Double
///Double.java
///11/3/2015


import java.util.Random;

class Doubles
{
    public static void main (String [] args)
    {
        Random r = new Random();
        
        System.out.println("HERE COMES THE DICE!");
        
        int x , y ;
        
        x = (1 + r.nextInt(6));  
        y = (1 + r.nextInt(6));
        
        System.out.println("Roll 1: " + x);
        System.out.println("Roll 2: " + y);
        System.out.println("The total is " + (x + y));
        
        while ( x != y )
        {
             x = (1 + r.nextInt(6));
             y = (1 + r.nextInt(6));

            System.out.println("Roll 1: " + x);
            System.out.println("Roll 2: " + y);
            System.out.println("The total is " + (x + y));
        }
       
    }
}
   

    

Picture of the output

Assignment 1