Computer Science, asked by praisejoy28, 1 month ago

write a program to input 3 numbers and find their squares​

Answers

Answered by sushobhanbhandari020
1

Answer:

CLS

REM TO FIND SQUARES

INPUT "ENTER THREE NUMBERS"; A,B,C

LET S= A^2

LET S= B^2

LET S= C^2

PRINT "SQUARES="; S

END

Similar questions