how to write a program to print the square of each of the numbers starting from 1 to 10 in Q Basic
Answers
Answered by
2
Cls
For A= 1 TO 10
PRINT A*A
NEXT A
END
For A= 1 TO 10
PRINT A*A
NEXT A
END
effie:
are you sure this works ...i don't have the programming ...have you tried this
Similar questions