Write pseudocode to represent the logic of a program that allows the user to enter a value for hours worked in a day. The program calculates the hours worked in a five day week and the hours worked in a 252 day work year. The program outputs all the results

3 answers

read h
w = 5 * h
y = 252 * w
print h , w , y
end
whoops
read h
w = 5 * h
y = 252 * h
print h , w , y
end
put this in
"Represent the logic of a program that allows the user to enter a value for one edge of a cube. The program calculates the surface area of one side of the cube, the surface area of the cube, and its volume. The program outputs all the results."
to Flowgorithm.