Computer Science, asked by QuizMistress, 10 months ago

write a program to print all the odd numbers between 1 to 100 Q Basic​

Answers

Answered by kunwardurgesh3635
17

Answer:

CLS

FOR I = 1 TO 100

IF I MOD 2 = 1 THEN  

PRINT I

END IF  

NEXT I  

END

Answered by hussainsalma119
1

Answer:

This is the correct answer

Explanation:

Follow

Brain lis

Attachments:
Similar questions