Question: Write a C# program for the following instructions: Create a console application that prompts the user for a number of new customers and old overhead
Write a C# program for the following instructions:
Create a console application that prompts the user for a number of new customers and old overhead for a specific resturant. Use the number of new customers to determine the annual overhead percentage increase, then calculate the new overhead in dollars. The program must run all of the listed test cases number of customers and new overhead in one execution. Use an array to store the input values. Assume the maximum number of new customers is 6000. The number of new customers must be greater or equal to zero. If less than zero, reprompt for that number again. Take a screenshot which includes all input values, the overhead increase percentage and new overhead amount for each test case.
Use the following data:
#new customers______Overhead increase %
0__________________ 0%
1 - 600 inclusive______ 1.0%
601-1200 inclusive____ 2.0%
1200-2000 inclusive___ 3.0%
2000-3000 inclusive___ 4.0%
more than 3000_______ 5.0%
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
