Question
8. Modify assumption a. in exercise 7 so that the program presents a menu of pay rates from which to choose. Use a switch to
8. Modify assumption a. in exercise 7 so that the program presents a menu of pay rates from which to choose. Use a switch to select the pay rate. The beginning of a run should look something like this: If choices 1 through 4 are selected, the program should request the hours worked. The program should recycle until 5 is entered. If something other than choices 1 through 5 is entered, the program should remind the user what the proper choices are and then recycle. Use #defined constants for the various earning rates and tax rates.
this is my code but it is not executing properly. i do not know the reasons for that.
#include
int main() { int choice, hour; float taxe, total;
printf("**************************************************************** "); printf(" Enter the number corresponding to the desired pay rate or action"); printf(" 1)$8.75/hr"); printf(" 2)$9.33/hr"); printf(" 3)$10.00/hr"); printf(" 4)$11.20hr"); printf(" 5)Quit"); printf("********************************************************** ");
scanf("%d", &choice);
printf("Please enter number of hours: "); scanf("%d", &hour);
switch(choice){ case 1: total = 8.75* hour; break; case 2: total = 9.33*hour; break; case 3: total = 10.00*hour; break; case 4: total = 11.20*hour; break; case 5: break; return 0; } }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started