Question: Write a Java program that accepts the price for an item, amount of payment, and computes the change required to repay a customer. Constants must
Write a Java program that accepts the price for an item, amount of payment, and computes the change required to repay a customer.
Constants must be defined and used for the tax rate (5%) and the maximum price ($500). Output of all dollar amounts (other than dollar-bill change denominations) shall be of the form $X.XX whereonlytwodecimalpointsareprinted;useaDecimalFormat object. The program will quit when the user enters a non-positive number. The program will loop until a valid price is entered (0 < 500). The program will compute and output the most appropriate change given the amount of change that must be returned to the customer. That is, $5 should be returned as a single $5 bill and not five $1 bills; similarly, for coins.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
