Question: You created a Rock Paper Scissors game. In the game, a player entered a number to represent one of the three choices. Make the following

You created a Rock Paper Scissors game. In the game, a player entered a number to represent one of the three choices. Make the following improvements to the game: 

  • Allow the user to enter a string (rock, paper, or scissors) instead of a digit.
  • Make sure the game works correctly, whether the player enters a choice in uppercase or lowercase letters, or a combination of the two.
  • To allow for player misspellings, accept the player’s entry as long as the first two letters are correct. (In other words, if a player types scixxrs, you will accept it as scissors because at least the first two letters are correct.).
  • When the player does not type at least the first two letters of the choice correctly, reprompt the player and continue to do so until the player’s entry contains at least the first two letters of one of the options. 
  • Allow 10 complete rounds of the game. 

At the end, display counts of the number of times the player won, the number of times the computer won, and the number of tie games. Save the file as RockPaperScissors2.java.

Step by Step Solution

3.38 Rating (167 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

import javaxswingJOptionPane public class RockPaperScissors2 public static void mainString args Stri... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Java Programming Questions!