6. Flowcharts Area of a parallelogram

The pseudocode below calculates the area of a parallelogram given the base, b, and height, h.
ALGORITHM parallelogramArea()

BEGIN
    INPUT b, h
    A  ←  b * h
    PRINT A
END


Tasks

  1. On the flowchart, fill in the shapes with text to represent the pseudocode above.

On the flowchart, fill in the shapes with text to represent the pseudocode above.

../_images/area_parallelogram.png