Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Java Programming 20 marks] Write a program that plays the Rock-Paper-Scissors-Lizard-Spock game. Refer to http://en.wikipedia.org/wiki/Rock-paper-scissors-lizard-Spock for more information. Normally, one player is a human and
Java Programming
20 marks] Write a program that plays the Rock-Paper-Scissors-Lizard-Spock game. Refer to http://en.wikipedia.org/wiki/Rock-paper-scissors-lizard-Spock for more information. Normally, one player is a human and the other is the computer program. However, in this exercise, the program will generate two players who play against each other. The play continues until either of the computer-generated players wins four consecutive times. In this game, two random integers are generated in the range of [1 to 5], one per player. 1 refers to Rock, 2 refers to Paper, 3 refers to Scissors, 4 refers to Lizard, and 5 refers to Spock For example, if the computer randomly generates integers 2 and 5 in the first iteration, 2 is for the first player and 5 is for the second player. Based on Rule 8 in the following 10 rules, Paper (2) disproves Spock (5), so Player 1 wins. Repeat it to generate one more pair and determine who wins that iteration. Continue the iterations until one player wins four consecutive times. Rule 1: Scissors cut paper Rule 2: Paper covers rock Rule 3: Rock crushes lizard Rule 4: Lizard poisons Spock Rule 5: Spock smashes (or melts) scissors Rule 6: Scissors decapitate lizard Rule7:Lizard eats paper Rule 8: Paper disproves Spock Rule 9: Spock vaporizes rock Rule 10: Rock breaks scissors RockPaperScissorsLizardSpock E Attributes + private int consecutiveWins +private int lastWinner public static final int LIZARD + public static final int PAPER + public static final int PLAYER1 +public static final int PLAYER2 +public static final int ROCK + public static final int SCISSORS + public static final int SPOCK Operations + public int getConsecutiveWins) + public int getLastWinner) + public int random) + public static String convert(int i) + public void play(int player1, int player2)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