Summary In this lab, you complete a C++ program with the provided data files. The program calculates the amount of tax withheld from an employee’s weekly salary, the tax deduction to which the employee is entitled for each dependent, and the employee’s take- home pay. The program output includes state tax withheld, federal tax withheld, dependent tax deductions, salary, and take-home pay. Instructions Ensure the source code file named Payroll.cpp is open in the code editor. Variables have been declared and initialized for you as needed, and the input and output statements have been written. Read the code carefully before you proceed to the next step. Write the C++ code needed to perform the following: Calculate state withholding tax (stateTax) at 6.5 percent Calculate federal withholding tax (federalTax) at 28.0 percent. Calculate dependent deductions (dependentDeduction) at 2.5 percent of the employee’s salary for each dependent. Calculate total withholding (totalWithholding) as stateTax + federalTax + dependentDeduction. Calculate take-home pay (takeHomePay) as salary - totalWithholding. Compile and execute your program by clicking the Run button. You should get the following output:State Tax: $81.25 Federal Tax: $350 Dependents: $62.5 Salary: $1250 Take-Home Pay: $756.25
Summary
In this lab, you complete a C++ program with the provided data files. The program calculates the amount of tax withheld from an employee’s weekly salary, the tax deduction to which the employee is entitled for each dependent, and the employee’s take- home pay. The program output includes state tax withheld, federal tax withheld, dependent tax deductions, salary, and take-home pay.
Instructions
-
Ensure the source code file named Payroll.cpp is open in the code editor.
-
Variables have been declared and initialized for you as needed, and the input and output statements have been written. Read the code carefully before you proceed to the next step.
-
Write the C++ code needed to perform the following:
- Calculate state withholding tax (stateTax) at 6.5 percent
- Calculate federal withholding tax (federalTax) at 28.0 percent.
- Calculate dependent deductions (dependentDeduction) at 2.5 percent of the employee’s salary for each dependent.
- Calculate total withholding (totalWithholding) as stateTax + federalTax + dependentDeduction.
- Calculate take-home pay (takeHomePay) as salary - totalWithholding.
- Compile and execute your program by clicking the Run button. You should get the following output:State Tax: $81.25 Federal Tax: $350 Dependents: $62.5 Salary: $1250 Take-Home Pay: $756.25
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images