Computer Science, asked by helmeenaalam, 2 months ago

Write a Qbasic program to print number 1 to 10 using for loop.​

Answers

Answered by joshuaabrahamshomu
2

Answer:

Explanation:

FOR i = 1 TO 10  

   PRINT i * 2  

NEXT i

Similar questions