Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In this problem, you'll play a simple rock, paper, scissors game. First, you'll ask the user to pick rock, paper, or scissors. Then, you'll have
In this problem, you'll play a simple rock, paper, scissors game. First, you'll ask the user to pick rock, paper, or scissors. Then, you'll have the computer randomly choose one of the options. You should use the Randomizer class that you created in the last exercise to help the computer make a choice. After that, print out the winner! You should keep playing the game until the user hits enter. Note: You'll need to implement a method called String getWinner(String user, String computer) that determines whether the user or computer won the game, and return the correct winner! Here is a sample run of the program. Enter your choice (rock, paper, or scissors):rock User: rock Computer: paper Computer wins! Enter your choice (rock, paper, or scissors): paper User: paper Computer: scissors Computer wins! Enter your choice (rock, paper, or scissors):scissors User: scissors Computer: paper User wins! Enter your choice (rock, paper, or scissors) :rock User: rock Computer: rock Tie Enter your choice (rock, paper, or scissors): Thanks for playing! public class Randomizer public class RockPaperScissors E
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started