qbasic program to display first 10 term of the series 144,121,100
Answers
Answered by
4
Explanation:
It can be done with another method as well.
Attachments:
Answered by
1
Answer:
CLS
C=1
A=12
START:
PRINT A^2
A=A-1
C=C+1
IF C<=10 THEN GOTO START:
END
Similar questions