66.1k views
5 votes
Draw a flowchart and write pseudocode to represent the logic of a program that allows the user to enter values for the width and length of a room’s floor in feet. The program outputs the area of the floor in square feet.

User Jeanc
by
6.5k points

1 Answer

7 votes

Answer:

10. Start

20. Enter Width of the room (W)

30. Enter length of the room (L)

40. LET Area = L * W

50. Output Area

60. End

Step-by-step explanation:

The flowchart is attached to this answer as an attachment.

Draw a flowchart and write pseudocode to represent the logic of a program that allows-example-1
User AkashG
by
6.1k points