Play Yahtzee specs For this game, you will need no user input at all. Declare integer variables that will represent five dice. 2. 1. Using random numbers, "roll" the dice (so each die can ha 3. Make sure you "seed" the random number generator as sh 4. Print which roll you're on and what each die has on it. 5. If a round has no matches, please indicate that. 6. When all five dice have the same value, stop the loop and Output should look similar to this: Roll 1 : 4 6 1 4 2 Roll 2 : 1 1 3 5 2 Roll 3 : 2 3 5 6 6 Roll 4 : 3 3 1 3 3 4 5 16 2 Roll 6 : 1 2 3 1 4 Roll 5 No matches this time! :

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Instructions for both assignments can be found in the picture linked to this post. The programs must be written in c++ and requires that the random number generator be seeded like this program:

Program 3.25

// This program demonstrates random numbers.
#include <iostream>
#include <cstdlib>    // For rand and srand
#include <ctime>      // For the time function
using namespace std;
 
int main()
{
// Get the system time.
unsigned seed = time(0);
 
// Seed the random number generator.
srand(seed);
 
// Display three random numbers.
cout << rand() << endl;
cout << rand() << endl;
cout << rand() << endl;
return 0;
}
**Play Yahtzee Specs**

For this game, you will need no user input at all.

1. Declare integer variables that will represent five dice.
2. Using random numbers, "roll" the dice (so each die can have only the values from 1 to 6).
3. Make sure you “seed” the random number generator as shown in Program 3-25.
4. Print which roll you're on and what each die has on it.
5. If a round has no matches, please indicate that.
6. When all five dice have the same value, stop the loop and print out "YAHTZEE!" 

   Output should look similar to this:
   ```
   Roll 1 : 4 6 1 4 2
   Roll 2 : 1 1 3 5 2
   Roll 3 : 2 3 5 6 6
   Roll 4 : 3 3 1 3 3
   Roll 5 : 4 5 1 6 2   No matches this time!
   Roll 6 : 1 2 3 1 4
   ... etc ...
   ... etc ...
   Roll 98 : 1 2 6 3 4   No matches this time!
   Roll 99 : 5 5 5 1 2
   ... etc ...
   ... etc ...
   Roll 128 : 4 4 4 4 4
   YAHTZEE!
   ```

7. Play this game several times to make sure that you’re not getting the same sequence of values every time.
Transcribed Image Text:**Play Yahtzee Specs** For this game, you will need no user input at all. 1. Declare integer variables that will represent five dice. 2. Using random numbers, "roll" the dice (so each die can have only the values from 1 to 6). 3. Make sure you “seed” the random number generator as shown in Program 3-25. 4. Print which roll you're on and what each die has on it. 5. If a round has no matches, please indicate that. 6. When all five dice have the same value, stop the loop and print out "YAHTZEE!" Output should look similar to this: ``` Roll 1 : 4 6 1 4 2 Roll 2 : 1 1 3 5 2 Roll 3 : 2 3 5 6 6 Roll 4 : 3 3 1 3 3 Roll 5 : 4 5 1 6 2 No matches this time! Roll 6 : 1 2 3 1 4 ... etc ... ... etc ... Roll 98 : 1 2 6 3 4 No matches this time! Roll 99 : 5 5 5 1 2 ... etc ... ... etc ... Roll 128 : 4 4 4 4 4 YAHTZEE! ``` 7. Play this game several times to make sure that you’re not getting the same sequence of values every time.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
ADT and Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education