Computer Science, asked by aritra6971, 1 year ago

qbasic program to display first 10 term of the series 144,121,100

Answers

Answered by SomyaRaman
4

Explanation:

It can be done with another method as well.

Attachments:
Answered by sanjaymishra56865
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