Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 #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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Analysis Using SQL And Excel

Authors: Gordon S Linoff

2nd Edition

111902143X, 9781119021438

More Books

Students also viewed these Databases questions