Computer Science, asked by kittu6595, 7 months ago

What is the qbasic program to find area of rectangle where length =6 and breadth =8

Answers

Answered by anindyaadhikari13
1

Question:-

Write a QBASIC program to find the area of a rectangle where length=6 and breadth=8

Program:-

Area of a rectangle is calculated by using formula,

Area = Length x Breadth.

So, here is your QBASIC program.

CLS

L=6

B=8

A = L * B

PRINT "AREA IS: ";A

END

Similar questions