Computer Science, asked by jadhavtushar088, 4 months ago

Write a program in QBasic to print odd numbers from 1 to 30.​

Answers

Answered by deepakkumar9254
9

Answer:

CLS

FOR I = 1 TO 30 STEP 2

PRINT I;

NEXT I

END

Similar questions