Computer Science, asked by EESHITHASHREE, 1 month ago

Write a QB64 program to find the first 10 odd numbers.​

Answers

Answered by fiyanpatel84
1

Answer:

CLS

REM "QBASIC PROGRAM"

LET A=1

FOR I=1 TO 10 STEP 1

PRINT A

A=A+2

NEXT I

END

Similar questions