Assignment 71, Shorter Double Dice

Code

   ///Name: Stella Koliavas
   ///Period: 5
   ///File Name: Dice3.java
   ///Date Finshed: 1/13/16
   
   import java.util.Random;
   import java.util.Scanner;
   
   public class Dice3
   {
      public static void main ( String[] args )
      {
      
        Random r = new Random();
        Scanner siri = new Scanner(System.in);
        
        int x = 1 + r.nextInt(6);
        int y = 1 + r.nextInt(6);
       
        do
        {
            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) );
            System.out.println( " "); 
        }while (x !=y);
        
        
      }
    }
        
    

Picture of the output

Assignment 71