Write down program in Java which would ask for clerk to enter total amount of customer's order. Program will then compute seven percent (7%) sales tax. Commission is calculated based on following: order amount $1 - $200 commission is 2%, order amount $201 - $400 commission is 3%, order amount $401 - $600 commission is 4%, order amount > $600 commission is 5%, program will show the following:
a) Amount of customer's order (eg. $500.00 or $1,000.00)
b) Tax amount
c) Total amount including tax added
d) Commission Amount
e) The program must also display "Thanks for business and please come again." Write program using applet and Console or (JOption) Swing option. (Console 50pts and Applet 50pts).