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

Respuesta :

R00Ken
In psuedocode it would be:

length = input()
width = input()

area = length * width

print(area + " sq ft");

Otras preguntas