Write a program in Java that would ask the clerk to enter the total amount of the customer’s order. The program will then calculate a seven percent (7%) sales tax. Calculate commission based on the following: order amount id="mce_marker" - $200 commission is 2%, order amount $201 - $400 commission is 3%, order amount $401 - $600 commission is 4%, order amount > $600 commission is 5%. The program will display the following: a) The amount of customer’s order (eg. $500.00 or id="mce_marker",000.00) b) The tax amount c) The total amount including tax added d) Commission Amount e) The customer will make ten orders, display the average of the total order and the sum of all orders. You must use at least two methods. Write the output to a file named “Order.txt” The program should also display “Thanks for your business and please come again.” Output: The amount of the Customer’s order $XXX, XXX.XX The tax amount is $XXX,XXX.XX The total Amount plus Tax is $XXX,XXX.XX Average order is $XXX,XXX,XX Sum of the order is $XXX,XXX.XX
Write a program in Java that would ask the clerk to enter the total amount of the customer’s order. The program will then calculate a seven percent (7%) sales tax. Calculate commission based on the following: order amount id="mce_marker" - $200 commission is 2%, order amount $201 - $400 commission is 3%, order amount $401 - $600 commission is 4%, order amount > $600 commission is 5%.
The program will display the following:
- a) The amount of customer’s order (eg. $500.00 or id="mce_marker",000.00)
- b) The tax amount
- c) The total amount including tax added
- d) Commission Amount
- e) The customer will make ten orders, display the average of the total order and the sum of all orders.
You must use at least two methods. Write the output to a file named “Order.txt” The program should also display “Thanks for your business and please come again.”
Output:
The amount of the Customer’s order $XXX, XXX.XX
The tax amount is $XXX,XXX.XX
The total Amount plus Tax is $XXX,XXX.XX
Average order is $XXX,XXX,XX
Sum of the order is $XXX,XXX.XX
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 4 images