I am working on a program. This is what I am attempting to achieve;
The program should present 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 the code I have so far, what am I missing?;
#include <stdio.h>
#include <stdlib.h>
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;
}
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…