Solve the following programs....
Attachments:
Answers
Answered by
2
- Write a program in QBASIC to print the given Series.
1 4 9 16 25 36 ..........100
CLS
A=0
FOR I=1 TO 10
A=I*I
PRINT A
NEXT I
END
Similar questions