Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in java please A slot machine is a gambling device that the user inserts money into and then pulls a lever (or presses a button).

in java pleaseimage text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

A slot machine is a gambling device that the user inserts money into and then pulls a lever (or presses a button). The slot machine then displays a set of random images. If two or more of the images match, the user wins an amount of money that the slot machine dispenses back to the user. Write a program that simulates a slot machine. When the program runs, it should do the following: Ask the user to enter the amount of money he or she wants to enter into the slot machine. Instead of displaying images, the program will randomly select a word from the following list: Cherries, Oranges, Plums, Bells, Melons, Bars To select a word, the program can generate a random number in the range of 0 through 5. If the number is 0, the selected word is Cherries; if the number is 1, the selected word is Oranges; and so forth. The program should randomly select a word from this list three times and display all three of the words. If none of the randomly selected words match, the program will inform the user that he or she has won $0. If two of the words match, the program will inform the user that he or she has won two times the amount entered. If three of the words match, the program will inform the user that he or she has won three times the amount entered. The program will ask whether the user wants to play again. If so, these steps are repeated. If not, the program displays the total amount of money entered into the slot machine and the total amount won. The program should use a constant (declared with the modifier final) for the maximum random number. If an invalid value of play again (other than Y', 'y', 'N', 'n') is input, the program should display an error message and loop to ask the user to enter again. Use printf method with appropriate format specifiers to print amount won, total amount bet, and total amount won with $ in the front and two digits after decimal point with trailing zeros displayed. If the amount is more than three digits, also display the grouping separator. The following are examples of the required I/O behavior, where the user's input is shown in bold. The program should use a constant (declared with the modifier final) for the maximum random number. If an invalid value of play again (other than Y', 'y', 'N, n') is input, the program should display an error message and loop to ask the user to enter again. Use printf method with appropriate format specifiers to print amount won, total amount bet, and total amount won with $ in the front and two digits after decimal point with trailing zeros displayed. If the amount is more than three digits, also display the grouping separator. The following are examples of the required I/O behavior, where the user's input is shown in bold. garrison / cs 1400/project $ java SlotMachine Simulator Welcome to the Slot Machine Simulator. $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ Enter the amount you would like to bet: $5 - Bells -- Oranges -- Oranges - Great! Two matches. That doubles your bet! You win $10.00 Would you like to play again? Enter Y for yes or N for no: y Enter the amount you would like to bet: $5 - Plums -- Oranges -- Melons - Sorry, none match... You win $0.00 Would you like to play again? Enter Y for yes or N for no: y Enter the amount you would like to bet: $5 - Bells -- Bells -- Bells - Wow! All three match! That triples your bet! You win $15.00 Would you like to play again? Enter Y for yes or N for no: y Enter the amount you would like to bet: $5 - Bells -- Plums -- Plums - Great! Two matches. That doubles your bet! You win $10.00 Would you like to play again? Enter Y for yes or N for no: y Enter the amount you would like to bet: $5 - Melons -- Melons -- Bells - Great! Two matches. That doubles your bet! You win $10.00 Would you like to play again? Enter Y for yes or N for no: n You bet a total of $25.00 You won a total of $45.00 Ron/cs1400/project s java SlotMachine Simulator Welcome to the Slot Machine Simulator. $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ Enter the amount you would like to bet: $5000 - Bells -- Cherries -- Cherries - Great! Two matches. That doubles your bet! You win $10,000.00 Would you like to play again? Enter Y for yes or N for no: y Enter the amount you would like to bet: $5 - Melons -- Oranges -- Melons - Great! Two matches. That doubles your bet! You win $10.00 Would you like to play again? Enter Y for yes or N for no: a Invalid value, input again: b Invalid value, input again: 123 Invalid value, input again: Y Enter the amount you would like to bet: $10 - Oranges -- Melons -- Oranges - Great! Two matches. That doubles your bet! You win $20.00 Would you like to play again? Enter Y for yes or N for no: Y Enter the amount you would like to bet: $5 - Bells -- Cherries -- Bells - Great! Two matches. That doubles your bet! You win $10.00 Enter the amount you would like to bet: $5 - Bells -- Cherries -- Bells - Great! Two matches. That doubles your bet! You win $10.00 Would you like to play again? Enter Y for yes or N for no: n You bet a total of $5,020.00 You won a total of $10,040.00

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

Students also viewed these Databases questions