Question: C + + pls; Suppose the Dice class is available. Its header file is shown below: Contents of Dice.h: class Dice { public: Dice (

C++ pls;
Suppose the Dice class is available. Its header file is shown below:
Contents of Dice.h:
class Dice
{
public:
Dice();
int roll();
};
Write a complete program. Allocate a new Dice object and ask the user to input the number of rolls and roll that many times. For each roll output: "You rolled X", where X is the result of the roll. At the end of the program, explicitly destroy the Dice object.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!