Assignment #62 and Dice Doubles
Code
/// Name: Graham Pollock
/// Period: 5
/// Program Name: Dice Doubles
/// File Name: DiceDoubles.java
/// Date Finished: 09/13/2015/
import java.util.Random;
public class DiceDoubles
{
public static void main(String[] args)
{
Random r = new Random();
int roll1, roll2;
double total;
roll1 = 1 + r.nextInt(6);
roll2 = 1 + r.nextInt(6);
total = roll1 + roll2;
System.out.println("Here they come!");
System.out.println("");
while (roll1 != roll2)
{
roll1 = 1 + r.nextInt(6);
roll2 = 1 + r.nextInt(6);
total = roll1 + roll2;
System.out.println("Roll #1: " + roll1 );
System.out.println("Roll #2: " + roll2 );
System.out.println("The total is " + total );
System.out.println("");
}
}
}
Picture of the output