Wednesday, October 30, 2019

QBASIC PROGRAMMING#1

To Find Area of Rectangle

CLS
INPUT "Enter length"; l
INPUT "Enter breadth"; b
A = l * b
PRINT "Area of rectangle="; A
END

No comments:

Post a Comment