Draw a fl owchart or write pseudocode to represent the logic

of a program that allows the user to enter three values. Th e
values represent hourly pay rate, the number of hours worked
this pay period, and percentage of gross salary that is withheld. Th e program multiplies the hourly pay rate by the number of hours worked, giving the gross pay. Th en, it multiplies
the gross pay by the withholding percentage, giving the withholding amount. Finally, it subtracts the withholding amount
from the gross pay, giving the net pay after taxes. Th e program outputs the net pay

the steps seem pretty clear -- what don't you understand?