A program is needed to assist computing automobile repair bills.
The cost of labor is $35 per hour.
The costs for parts are subject to a 5% sales tax, which should be added to the parts cost.
The console program should first prompt the user with:
Please enter Customer name, or 'quit' to end:
If the user enters a non-empty string (other than 'quit'), then the user should be prompted as follows (with responses after each prompt):
Please enter Hours of Labor:
Please enter cost of parts:
The bill for the customer should then be printed to the screen, as shown below in the sample output
When the user enters "quit" using ANY combination of upper-or-lower case letters, or simply presses the key, the overall total bill and number of customers should be printed, and the program then end, as shown in the same output below:
Use a constant for the labor rate and sales tax.
Spacing for customer name through total cost for a customer bill should be tabbed.
Build both a C# and Visual basic Program.
Run them both using the following data for input:
Customer name Hours of Labor Cost of Parts
Linda Payne 20 30
John Myer 15.5 25.5
Susan Branda 18 30
End program by entering "quit" for user name
Use compound arithmetic operators where appropriate.
Use a pretest loop for your processing in Main processing (with a priming read).