Respuesta :

Answer:

I used the standard OUTPUT command, but you might use PRINT, depending on what was included in your class instructions.

OUTPUT 'What is the hourly pay?'

INPUT user inputs the hourly pay

STORE the user's input in the hourlyPay variable

OUTPUT 'What is the number of hours worked?'

INPUT user inputs the number of hours worked

STORE the user's input in the numHours variable

SET grossPay as the product of hourlyPay and numHours

OUTPUT 'Thanks, the gross pay is " grossPay