Computer Science, asked by suvashreebanerjee, 5 months ago

write a program in QBASIC to print the first N natural numbers using FOR-NEXT loop.
Anyone can answer this question please. ​

Answers

Answered by abhinandavis83
7

Answer:

CLS

INPUT "ENTER THE VALUE OF N" , N

FOR I =1 TO N

PRINT I

NEXT I

END

Explanation:

Similar questions