40.7k views
0 votes
How do you write a program to show the area of a rectangle

User MarkXA
by
3.1k points

1 Answer

3 votes

Answer:

cls

input "length";l

input "width";w

a=l*w

print"area of rectangle";a

end

User Marco Vargas
by
3.3k points