A fast food restaurant charges $1.69 for burgers, $1.09 for fries, and $0.99 for sodas.
a) Create an Order application that prompts the employee for the number of burgers, fries, and sodas and then displays the total, the tax (6.5%), and the final cost. The application output should look similar to:
Enter the number of burgers:2
Enter the number of fries:5
Enter the number of sodas:5
total before tax: $13.78
Tax: $0.90
Final total: $14.68
b) Modify Order to prompt the employee for the amount tendered and then display the change due. Application output should look similar to:
Enter amount tendered: $20.00
Change: $5.32