rock paper scissors programe c
Description: Rock, Paper, Scissors
The purpose of this exercise is to give you an opportunity to practice using cin to handle user keyboard inputs, use branching statements to control the flow of a program, and work on your C++ programming style.
In this exercise, you will implement a rock paper scissors game. The computer will select rock, paper, or scissors randomly (and of course not reveal this selection to the player). The player will then enter 1 for Rock, 2 for Paper, or 3 for Scissor for her or his selection. Then the program will let the player know if she or he won. At the end of each round, allow the player to choose whether or not she or he wants to continue playing.
You must implement/include the following features in addition to the game play:
keep count of the number of times the player won and lost when the player chooses to stop playing, display these counts
keep a count of the number of times the player selects to play rock, scissors, and paper
implement the computer’s selection as a random integer
Objectives:
work on your C++ programming style
use boolean expressions
use branching statements to control the flow of a program
Requirements:
Your program source code must be documented correctly (see the starter.cpp example)
Your program source code must be neatly and consistently formatted (see the starter.cpp example)
Your program must compile and run without errors
Use cin to handle all user keyboard inputs
Use at least one (1) switch statement and one (1) if statement in your program
Computer generates a random selection, as an integer
Prompt for and read in the player’s selection
Compare the player’s selection to the computer’s selection
Display an appropriate message to the player to let them know whether they won or lost
Keep a count of the number of times the player selects to play rock, scissors, and paper
Prompt for and read in the player’s choice about playing another round
At the end of play, display the number of player wins and losses
Flowchart or pseudocode
Attach your main.cpp file
Attach your flowchart/pseudocode (can be txt, pdf, jpg, or png)
Out of all the games played let the player know who was the overall winner (computer or player). Also what the winning object (what object did the winner have the most wins with).
Tell the player what they should have chosen to win most of the time. For example, if the computer chose rock 7 out of the 10 times then the player should have chosen paper to win most of the time.