Computer Science, asked by Lorsol, 1 day ago

Write a SMALL BASIC Program to find the Area of A Square.

Answers

Answered by aashishsah2064
0

Answer:

REM: Area of square

CLS

INPUT "Enter length="; l

LET A=l^2

PRINT "Result="; A

END

Similar questions