Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Task: Compute the weekly pay for each employee at the Wahoo Widget Company. For each employee, you wil calculate the base pay according to the

image text in transcribed
Task: Compute the weekly pay for each employee at the Wahoo Widget Company. For each employee, you wil calculate the base pay according to the appropriate salary category, and then subtract taxes and deductions. Write the program in C++ only Input: For each employee, read an employee ID (a 4-digit integer) and a salary category code (see below). Then read whatever other information might be needed to compute a net salary for that person. Because of occasional employee turn- over, you do not know the exact number of employees in advance. Determine how you will know when all employees have been processed for this week. (You will use a loop to process the employees, but not a counting loop.) Processing: The Company has established 4 salary categories: Code 1: Managers. They receive a fixed annual salary of $50,000 Code 2: Factory workers. They receive a fixed wage of $14.85 per hour for the first 40 hours worked each week, then they receive time-and-a-half (1.5 the regular salary) for any overtime. Code 3: Sales staff. They receive $250 each week, plus a Code 4: Pieceworkers. The part-time staff receives a fixed Code 5: Owner, that's me. I get $350,00. The combined federal, state, and local taxes are computed commission that is 5.7% of their gross weekly sales of widgets. fee of $11.30 for each widget they produce. They do not pay health insurance or union dues. Additional factors that apply to the employees: as 19% of the gross salary After taxes are subtracted, $27.85 is deducted from the owner, managers, factory workers, and sales staff to cover health insurance and union dues Within the processing loop, use a switch statement to compute each employee's weekly pay based on that employee's pay code. Within the switch, prompt the user (i.e., the payroll clerk) to enter the appropriate facts that your program needs to calculate the gross salary for that pay code. Then subtract the taxes and deductions. The final result is the net salary (take-home pay). Output: After each employee is processed, display the results on the screen: the employee ID, gross salary, taxes, deductions, and net salary. Format all money to two decimal places. Line up the decimal points in the display

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions