Write C++ program from the pseodocode . Design a program that computes pay for employees. Allow a user to continuously input employees' names until an appropriate sentinel value is entered. Also input each employee's hourly wage and hours worked. Compute each employee's gross pay (hours times rate), withholding tax percentage withholding tax amount, and net pay (gross pay minus withholding tax). Display all the results for each employee. After the last employee has been entered, display the sum of all the hours worked, the total gross payroll, the total withholding for all employees, and the total net payroll. //Pseudocode //start// Declarations// string empName// num salary// num hrsWorked// num x// num grossPay// num withTax// num netPay// num totalGrossPay=0// num totalHrsWorked=0// num totalWithTax=0// num totalNetPay=0// string QUIT = "zzzz"// num SIZE = 4// num WITH_RATES[SIZE]= 0.10, 0.13, 0.16, 0.20// num WITH_RANGES[SIZE]= 0, 300.01, 550.01, 800.01 // getReady()// while empName <> QUIT? then// detailLoop()// endwhile// finishUp()//stop //getReady()// output "Enter an employee name or " QUIT "to quit"// input empName//return //detailLoop()// output "Enter,"empName, "hourly wage and hours worked"// input salary, hrsWorked// grossPay = hrsWorked*salary// totalHrsWorked = totalHrsWorked + hrsWorked// totalGrossPay = totalGrossPay + grossPay// x = SIZE-1// while grossPay < WITH_RANGES[x] ? then// x = x-1// endwhile// withTax = grossPay * WITH_RATES[x]// totalWithTax = totalWithTax + withTax // netPay = grossPay - withTax// totalNetPay = totalNetPay + netPay// output empName, grossPay, WITH_RATES[x]*100, withTax, netPay// output "Enter an employee name or " QUIT "to quit"// input empName//return //finishUp// output totalHrsWorked, totalGrossPay, totalWithTax, totalNetPay//return
Write C++
. Design a program that computes pay for employees. Allow a user to continuously input employees' names until an appropriate sentinel value is entered. Also input each employee's hourly wage and hours worked. Compute each employee's gross pay (hours times rate), withholding tax percentage withholding tax amount, and net pay (gross pay minus withholding tax). Display all the results for each employee. After the last employee has been entered, display the sum of all the hours worked, the total gross payroll, the total withholding for all employees, and the total net payroll.
//Pseudocode
//start
// Declarations
// string empName
// num salary
// num hrsWorked
// num x
// num grossPay
// num withTax
// num netPay
// num totalGrossPay=0
// num totalHrsWorked=0
// num totalWithTax=0
// num totalNetPay=0
// string QUIT = "zzzz"
// num SIZE = 4
// num WITH_RATES[SIZE]= 0.10, 0.13, 0.16, 0.20
// num WITH_RANGES[SIZE]= 0, 300.01, 550.01, 800.01
// getReady()
// while empName <> QUIT? then
// detailLoop()
// endwhile
// finishUp()
//stop
//getReady()
// output "Enter an employee name or " QUIT "to quit"
// input empName
//return
//detailLoop()
// output "Enter,"empName, "hourly wage and hours worked"
// input salary, hrsWorked
// grossPay = hrsWorked*salary
// totalHrsWorked = totalHrsWorked + hrsWorked
// totalGrossPay = totalGrossPay + grossPay
// x = SIZE-1
// while grossPay < WITH_RANGES[x] ? then
// x = x-1
// endwhile
// withTax = grossPay * WITH_RATES[x]
// totalWithTax = totalWithTax + withTax
// netPay = grossPay - withTax
// totalNetPay = totalNetPay + netPay
// output empName, grossPay, WITH_RATES[x]*100, withTax, netPay
// output "Enter an employee name or " QUIT "to quit"
// input empName
//return
//finishUp
// output totalHrsWorked, totalGrossPay, totalWithTax, totalNetPay
//return
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images