Assignemnt #71 Shorter Double Dice
Code
//Tyler Hart
//period 5
//ShorterDoubleDice.java
//Shorter Double Dice
//11/10/2015
import java.util.Random;
public class ShorterDoubleDice
{
public static void main( String [] args)
{
Random r = new Random();
int d1= r.nextInt(6)+1,d2= r.nextInt(6)+1;
do
{
d1= r.nextInt(6)+1;
d2= r.nextInt(6)+1;
System.out.println("Roll #1: "+d1);
System.out.println("Roll #2: "+d2);
System.out.println("The total is "+(d1+d2+"!"));
}while ( d1 != d2 );
}
}
Picture of the output