Computer Science, asked by Jagadeeshreddy7994, 10 months ago

A qbasic program to print first odd numbers

Answers

Answered by sruthikumar2003002
0

Answer:

CLS

FOR I = 1 TO 25 STEP 2

PRINT I;

NEXT I

END

Similar questions