How to work out an algorithm that writes the odd numbers between 100 and 200? [closed]

-5

I'm stuck on this issue that I saw in a Programming logic PDF , how can I resolve this?

  

Construct an algorithm that generates and writes the odd numbers of numbers read between 100 and 200.

    
asked by anonymous 14.09.2015 / 21:46

1 answer

5

You will have to make a% w of% between the values 100 and 200, if the rest of the division by 2 is different from 0, the number is odd.

    
14.09.2015 / 21:50