write a program to print the odd numbers from 1 to 30
Answers
Answered by
0
step by step explanation
CLS
for I = 1 to 30 step 2
print I;
next I
end
Similar questions