Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

FOLLOW ALL INSTRUCTIONS EXACTLY AS THEY ARE WRITTEN AS THE TEACHER IS VERY SPECIFIC Subjects: A NetBcan's project assessing your knowledge on if-else, switch, for-

FOLLOW ALL INSTRUCTIONS EXACTLY AS THEY ARE WRITTEN AS THE TEACHER IS VERY SPECIFIC image text in transcribed

Subjects: A NetBcan's project assessing your knowledge on if-else, switch, for- or while-loop, and method. Students can form a team of up to 3 members to work on this project together, and it is ak to have a smaller group. Plrase include the names of your team members in yaur Canvas submission comments, and each team only needs to subrnit one copy on Carnvas Instructions: Write a NetBeans progran that allows users to play the popular scissor-rock-paper game multiple times against the computer. Basic game rue: a scissor can cut a paper, a rock can knock a scissor, arnd a paper can wrap a rock. Name the project as RockPaperScissorYourTeamNumber. You can choose the input and output interfaces, names of variables, and ways to represent scissor, rock, and paper for this project, but you must meet the following specific requirements. 1. Define a method named as playGame outside the main method. This method receives two parameters representing the player's and computer's choices, and It returns an integer representing the game result for the player; specifically, it returns 1 if the player wins and o if the player does not win. You must use a switch statement to handle the player's choice. Within each switch case, use if-else statements to determine the game outcome and then display a message indicating whether the player ar the camputer wins, loses, or draws. Please include a default ase for the switch statement In the main methad, write code to let users play the game mutiple rournds against the computer 1) In each round of the game (apply to both the far-loop and while-loop below: 2. Let the computer randomly make a choice of scissor, rock, and paper. For example, if you use 0, 1, and 2 to represent scissor, rock, arnd paper, respectively, you should randomly generate a number (ot 0, 1, and 2) as the computers choice. a. b. Prampt the player to make the player's chaice (of 0, 1, and 2) arnd then capture the player's choice. c. Call the playGame method to play the game once Option 1: use a for-loop to let the player play this game 3 times. For each round of the zame, display a message indicating whether the player or the computer wins, loses, or draws. After the player has played 3 times, display a message indicating how many times the player has won. 2) )Option 2:use a while loop to let the player play this game multiple times and the loop ends when the player wins 3 times. For each round of the game, display a message indicating whether the player or the computer wins, loses, or draws. After the player has won 3 times display a message informing the player that the player has won 3 out of how many of times played. Save your work before closing the project (especially if you can't compile it). Zip the whole NetBeans project after you have clased the project and subnit the zipped fille through Carnvas

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

Students also viewed these Databases questions

Question

Introduce and define metals and nonmetals and explain with examples

Answered: 1 week ago

Question

What is IUPAC system? Name organic compounds using IUPAC system.

Answered: 1 week ago

Question

What happens when carbonate and hydrogen react with carbonate?

Answered: 1 week ago