Question: Please code this in C++ Part 2: Rock Paper Scissors Game Write a program that lets the user play this game against the computer. The

Please code this in C++
Part 2: Rock Paper Scissors Game Write a program that lets the user play this game against the computer. The program should work as follows: When the program begins, a random number between 1 and 3 is generated. o If the number is 1, the computer has chosen rock. o If the number is 2, the computer has chosen paper. o If the number is 3, the computer has chosen scissors. O Don't display the computer's choice yet. Use a menu to display the choices the user can enter. Prompt the user to enter his or her choice of rock, paper or scissors. Display the computer's choice and the user's choice. Select a winner according to the following rules: o Rock smashes scissors, so rock wins. O Scissors cuts paper, so scissors wins. O Paper wraps rock, so paper wins. o If both players make same choice, game must be played again to determine winner. Divide program into functions to perform each major task. You should have at least 4 functions
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
