Answered You can hire a professional tutor to get the answer.
I need help debugging this. Can you help me find the errors in this pseudocode?
I need help debugging this. Can you help me find the errors in this pseudocode?
// Program gives user a 10% raise
start
Declarations
num payRate
num RAISE_FACTOR = 0.10
displayInstructions()
input payRate
newPay = payRate + payRate * RAISE_FACTOR
output "Your new pay rate will be ", newPay
stop
void showInstructions()
output "Enter your current pay rate"
output "in dollars and cents"
output "Do not use a dollar sign - "
output "Use digits and a decimal point only"
return newPay