The following pseudcode algorithm has an error. the programs is supposed to ask the user for the length and width of a rectangular room, and they display the room's area. the program must multiply the width by the legnth to determine the area. Find the error.
area= width x length.display "what is the room's width?".input width.display "what is the room's length?".input length.display area.