Write a script to find all the odd numbers between 1 and 100
Answers
Answered by
0
Answer:
which language?
Explanation:
simple algo would be to start from 1, print 50 count, step size +2
for [i=1;i<100;i+=2]
prn i
-------------
j=1;
for [i=1; i<=50;i++]
j+=2
prn j
Similar questions