Assignemnt #62: Looping a Game of Dice

Code

 /// Name: Sean Harrison
    /// Period: 7
    /// Program name: Double Dice
    /// File Name: DoubleDice.java
    /// Date Finished: 12/3/2015
    
import java.util.Random;
import java.util.Scanner;
public class DiceDoubles
{
    public static void main ( String[] args ) 
    {
    Random r = new Random();
    Scanner keyboard = new Scanner(System.in);
    int x = 1 + r.nextInt(6);
    int y = 1 + r.nextInt(6);
    
    System.out.println( "Time to roll some dice today. " );
    System.out.println();
    while ( x != y )
    {
        y = 1 +r .nextInt(6);
        x = 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 62