can someone help me create pseudocode. Im writing pseudocode representing a payroll application, this includes over time hours, payrate, tax and social security deductions. I need to now incorporate.................................... Your pay calculation pseudocode must be changed to accept input from a file. You need to read each record from the file, calculate the correct pay and stop as soon as the end of file has been reached. Im totally new to this so don't laugh after reading what I have so far. any help would be greatly appreciated.
Net Pay for hourly employee: Name of Employee =
If hours > 40
Regpay = 40 * payrate
Overtime = (hours – 40) * (payrate * 1.5)
Totalpay = Overtime + Regpay
Else
Totalpay = hours * payrate
//State tax is 6%
//Federal Tax is 15%
//Social security is 7.5 %
Totalpay * (6/100) → take home
Take home * (15/100)→ Take home - Tax
take home - tax * (7.5/100) = Total Take Home
print total take home
Endif