a program to find the area of a rectangular field [ in qb64]
Answers
Answered by
1
Answer:
REM to find area of rectangal
cls
input"enter length";l
input"enter breadth";b
area=l*b
print"the area of rectangal is";area
end
Explanation:
Similar questions