[Solved]Use C Console Application Also Include Designer Code Create Application Lets User Play Gam Q37069373
USE C# CONSOLE APPLICATION AND ALSO INCLUDE DESIGNERCODE
Create an application that lets the user play the game of Rock,Paper, Scissors against the computer. The program should work asfollows:
Be sure to modularize the program into methods that perform eachmajor task.
- When the program begins, a random number is generated and thecorresponding image from an imagelist along with the name of theimage is chosen. (Do not display the computer’s choiceyet.)
- The user selects his or her choice of rock, paper, or scissors.To get this input you can use Button controls, or clickablePictureBox controls displaying either a rock, paper or scissor withthe corresponding image name above or below the box. All imagesshould come from the imagelist. The file with the images isincluded in the assignment page. You can pick your own images aswell if you want.
- The computer’s choice is then displayed.
- A winner is selected according to the following rules:
- If one player/computer chooses rock and the otherplayer/computer chooses scissors, then rock wins. (Rock smashesscissors.)
- If one player/computer chooses scissors and the otherplayer/computer chooses paper, then scissors wins. (Scissors cutspaper.)
- If one player/computer chooses paper and the otherplayer/computer chooses rock, then paper wins. (Paper wrapsrock.)
- If both players make the same choice, the game must be playedagain to determine the winner.
- A counter should be included to keep track of the times thecomputer wins as well as when you win. Display the results aftereach turn.
Expert Answer
Answer to USE C# CONSOLE APPLICATION AND ALSO INCLUDE DESIGNER CODE Create an application that lets the user play the game of Rock… . . .
OR

