write qbasic program using FOR loop to print 1 to 100 .
Answers
Answered by
2
Answer:
CLS
c = 1
DO WHILE c <= 100
PRINT c
c = c + 1
LOOP
END
Explanation:
Similar questions