In the Dice Roll game, the player begins with a score of 1000. The player is prompted for the number of points to risk and a second prompt asks the player to choose either high or low. The player rolls two dice and the outcome is compared to the player’s choice of high or low. If the dice total is between 2 and 6 inclusive, then it is considered “low”. A total between 8 and 12 inclusive is “high”. A total of 7 is neither high nor low, and the player loses the points at risk. If the player had called correctly, the points at risk are doubled and added to the total points. For a wrong call, the player loses the points at risk. Create a DiceRollGame application that uses a DRPlayer object based on this specification. The DRPlayer object should have two Die member variables that represent the dice. The Die class should use a random number generator to determine the outcome in a roll() method. Application output should look similar to:
In the Dice Roll game, the player begins with a score of 1000. The player is prompted for the number
of points to risk and a second prompt asks the player to choose either high or low. The player rolls
two dice and the outcome is compared to the player’s choice of high or low. If the dice total is between
2 and 6 inclusive, then it is considered “low”. A total between 8 and 12 inclusive is “high”. A total of
7 is neither high nor low, and the player loses the points at risk. If the player had called correctly, the
points at risk are doubled and added to the total points. For a wrong call, the player loses the points at
risk. Create a DiceRollGame application that uses a DRPlayer object based on this specification. The
DRPlayer object should have two Die member variables that represent the dice. The Die class should
use a random number generator to determine the outcome in a roll() method. Application output
should look similar to:
Step by step
Solved in 2 steps with 2 images