Computer Science, asked by ashoksah10011, 10 months ago


Write a program in Qbasic
to find the area of the rectangle .

Answers

Answered by harshkhandelwal51
2

Answer:

CLS

INPUT “ENTER LENGTH”; L

INPUT “ENTER BREADTH”; B

A = L * B

PRINT “AREA OF RECTANGLE ”; A

END

Similar questions