The program prompts the user to input a length and width, passes those values to an area calculation function that multiplies length by width, returns the area result, and displays the calculated area.
The program prompts the user to input a length and width, passes those values to an area calculation function that multiplies length by width, returns the area result, and displays the calculated area.
Read length Display message for user input for width Read width Call areacalc (length, width) area = length * width Return area Display message showing area END
START Display message prompting user input for length