Post Lab 9: Rolling a Pair of Dice

Due Friday, November 11, 2011 by 4 p.m.

In this assignment you will write a PairOfDice class (in file PairOfDice.java) and then use it in a program (PlayGame.java) with a loop.

The PairOfDice class must meet the following specifications:

Instance data: Two Die objects (die1 and die2). You need to save the class Die.java from your textbook (it is on pages 168 - 169 - an example program that uses Die objects is on page 167). Do not change Die.java - just use it. For example, you will declare the two instance variables die1 and die2 to be of type Die in your PairOfDice class.

Methods:

Write a program PlayGame that does the following:

Other requirements: As usual you must use good programming techniques. Each of your files must be documented appropriately!

Submission: