Computer Science, asked by dasjuhi1993, 2 days ago

write a program (WAP) in QBASIC to display all odd number from 11 to N using FOR-Next​

Answers

Answered by 31aliahmedzahidshaik
0

Answer:

write a program (WAP) in QBASIC to display all odd number from 11 to N using FOR-Next

Explanation:

Hope it helps

Attachments:
Answered by SurajBrainlyStarz
2

Answer:

CLS

FOR I = 2 TO 20STEP 2

PRINT I;

NEXT I

END

Similar questions