Given the sample code above in generating a random number. Create a program that lets the user play the game of Rock, Paper, Scissors against the computer. The program should work as follows. 1. When the program begins, a random number in the range of 1 through 3 is generated. If the number is 1, then the computer has chosen rock. If the number is 2, then the computer has chosen paper. If the number is 3, then the computer has chosen scissors. (Don’t display the computer’s choice yet.) 2. The user enters his or her choice of “rock”, “paper”, or “scissors” at the keyboard. (You can use a menu if you prefer.) 3. The computer’s choice is displayed. 4. A winner is selected according to the following rules: a. If one player chooses rock and the other player chooses scissors, then rock wins. (The rock smashes the scissors.) b. If one player chooses scissors and the other player chooses paper, then scissor wins. (Scissors cuts paper.) c. If one player chooses paper and the other player chooses rock, then paper wins. (Paper wraps rock.) d. If both players make the same choice, the game must be played again to determine the winner. Use the following function prototypes to perform each major task. (please use it ty) 1. int random(); 2. string input(); 3. string compChoice(int); 4. void displayCompChoice(string); 5. bool compare(string, string); note: the output should be like the Sample run. Please put the "The rock smashes the scissors" like that. Ty so much
In c++ please.
Given the sample code above in generating a random number. Create a program that lets the user play the game of Rock, Paper, Scissors against the computer. The program should work as follows.
1. When the program begins, a random number in the range of 1 through 3 is generated. If the number is 1, then the computer has chosen rock. If the number is 2, then the computer has chosen paper. If the number is 3, then the computer has chosen scissors.
(Don’t display the computer’s choice yet.)
2. The user enters his or her choice of “rock”, “paper”, or “scissors” at the keyboard.
(You can use a menu if you prefer.)
3. The computer’s choice is displayed.
4. A winner is selected according to the following rules:
a. If one player chooses rock and the other player chooses scissors, then rock wins.
(The rock smashes the scissors.)
b. If one player chooses scissors and the other player chooses paper, then scissor wins. (Scissors cuts paper.)
c. If one player chooses paper and the other player chooses rock, then paper wins.
(Paper wraps rock.)
d. If both players make the same choice, the game must be played again to determine the winner.
Use the following function prototypes to perform each major task. (please use it ty)
1. int random();
2. string input();
3. string compChoice(int);
4. void displayCompChoice(string);
5. bool compare(string, string);
note: the output should be like the Sample run. Please put the "The rock smashes the scissors" like that. Ty so much
![#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main () {
srand (time (NULL));
int x;
x = rand () %3+1; //generate random number from 1-3
cout << x << " ";
return 0;](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F6800b25d-7a2d-4be8-adb0-379008dddf05%2F4d5d2e00-ee04-4a4d-ab7e-a8ac9b09c331%2Fry2u9qw_processed.png&w=3840&q=75)
![Given the sample code above in generating a random number. Create a program that lets the user
play the game of Rock, Paper, Scissors against the computer. The program should work as follows.
1. When the program begins, a random number in the range of 1 through 3 is generated.
If the number is 1, then the computer has chosen rock. If the number is 2, then the
computer has chosen paper. If the number is 3, then the computer has chosen scissors.
(Don't display the computer's choice yet.)
2. The user enters his or her choice of "rock", "paper", or "scissors" at the keyboard.
(You can use a menu if you prefer.)
3. The computer's choice is displayed.
4. A winner is selected according to the following rules:
a. Ifone player chooses rock and the other player chooses scissors, then rock wins.
(The rock smashes the scissors.)
b. Ifone player chooses scissors and the other player chooses paper, then scissor
wins. (Scissors cuts paper.)
c. Ifone player chooses paper and the other player chooses rock, then paper wins.
(Paper wraps rock.)
d. Ifboth players make the same choice, the game must be played again to determine
the winner.
Use the following function prototypes to perform each major task.
1. int random();
2. string input();
3. string compChoice(int);
4. void displayCompChoice(string);
5. bool compare( string, string);
Sample Run
Please enter [rock or paper or scissor]:
Enter your choice: rock
Computer choice: rock
Please enter [rock or paper or scissor]:
Enter your choice: scissor
Computer choice: rock
Please enter [rock or paper or scissor]:
Enter your choice: paper
Computer choice: rock
You win!
Paper wraps rock.
Computer wins!
Rock smashes Scissor.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F6800b25d-7a2d-4be8-adb0-379008dddf05%2F4d5d2e00-ee04-4a4d-ab7e-a8ac9b09c331%2F2hq9cn_processed.png&w=3840&q=75)
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 3 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)