Computer Science, asked by aryanjitendra2, 2 days ago

Write a program in MS Small Basic to print to PRINT THE ODD NUMBERS FROM 1-
100

Answers

Answered by dheepikarameshkumar
0

Answer:

CLS

FOR I = 1 TO 100

IF I MOD 2 = 1 THEN  

PRINT I

END IF  

NEXT I  

END

Explanation:

Similar questions