Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For Java : Create a program that simulates a vending machine your program will ask the user to enter a price for an item first,

For Java :

Create a program that simulates a vending machine your program will ask the user to enter a price for an item first, then enter the amount of money deposited. Your program should display the change that is given to the user, as a number of quarters, dimes, nickels, and pennies. Change should be given using the smallest number of coins possible (change higher than 1 dollar can be given in quarters). If the user will receive no change, say no change instead of 0 quarters, 0 dimes, 0 nickels and 0 pennies. If the user enters less money than the price of the item then give an error message stating not enough money inserted with an error icon. After each transaction, whether enough money or not, ask the user if they have another transaction, using yes and no buttons, and repeat if so. Use JoptionPane for all inputs/outputs (no Scanner or println). Note: You can assume that the user will type the price as a decimal number without a dollar sign.

Sample inputs/outputs (note shown here in text, but should all be through JoptionPane):

Enter price of item: $1.25

Enter amount of money inserted: $1.90

Change:

Quarters: 2

Dimes: 1

Nickels: 1

Pennies: 0

Do you have another entry?: Yes

Enter price of item: $1.25

Enter amount of money inserted: $2.60

Change:

Quarters: 5

Dimes: 1

Nickels: 0

Pennies: 0

Do you have another entry?: Yes

Enter price of item: $2.00

Enter amount of money inserted: $2.00

No Change

Do you have another entry?: Yes

Enter price of item: $1.25

Enter amount of money inserted: $1.00

Error: Not enough money inserted.

Do you have another entry?: No

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

Database And Expert Systems Applications 33rd International Conference Dexa 2022 Vienna Austria August 22 24 2022 Proceedings Part 1 Lncs 13426

Authors: Christine Strauss ,Alfredo Cuzzocrea ,Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil

1st Edition

3031124227, 978-3031124228

More Books

Students also viewed these Databases questions