207k views
2 votes
Draw a flowchart or write pseudocode to represent the logic of a program that allows the use 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 Clark Bao
by
8.3k points

1 Answer

1 vote
In psuedocode it would be:

length = input()
width = input()

area = length * width

print(area + " sq ft");

User Theodoros
by
8.4k points