Here is the scenario:
Modify the program to run the whole program as often as the user wants.Specifically run the whole program AT LEAST ONCE for the first set of input values, then ask if the user wants to run the program again. If the says yes run the program again for different values. If the user says no, say " GOODBYE" and terminate the program.Use the most appropriate LOOP construct to repeat getting input, doing calculations and printing until the user says to stop. You can make up how or what you ask the user when finding out if he/she wants to run it again with another set of input values Run the code ONCE giving these input values:
Cost: $50.00 Mark-up percentage: 10% Sales tax rate: 5%
Cost: $250.00 Mark-up percentage: 45% Sales tax rate: 12%
Cost: $25.00 Mark-up percentage: 5% Sales tax rate: 10%
Cost: $100.00 Mark-up percentage: 8% Sales tax rate: 3%
Would it make sense to use the FOR loop? or Do while? Why?