5. Flowcharts Area of a square

The pseudocode below calculates the area of a square given the length of one side, l.
ALGORITHM squareArea()

BEGIN
    INPUT l
    A  ←  l * l
    PRINT A
END


Tasks

  1. On the flowchart, draw the correct shape for the process.

On the flowchart, draw the correct shape for the process.

../_images/area_square.png