Computer Science, asked by dineeshthapa01, 1 month ago

Write a program in qbasic to display the sum of first 10 natural numbers

Answers

Answered by kchowdhary1987
3

Answer:

CLS

FOR i = 1 TO 10 STEP 1

   PRINT i

NEXT i

END

Similar questions