Computer Science, asked by mohantyjoshna20, 8 months ago

solve the following programme​

Attachments:

Answers

Answered by anindyaadhikari13
2

\star\:\:\:\bf\large\underline\blue{Question:-}

Write a program in QBASIC to print the given Series.

1 4 9 16 25 36 ..........100

\star\:\:\:\bf\large\underline\blue{Source\:Code:-}

CLS

A=0

FOR I=1 TO 10

A=I*I

PRINT A

NEXT I

END

Similar questions