write a program (WAP) in QBASIC to display all odd number from 11 to N using FOR-Next
Answers
Answered by
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
2
Answer:
CLS
FOR I = 2 TO 20STEP 2
PRINT I;
NEXT I
END
Similar questions