Computer Science, asked by spayashni, 2 months ago

While Loop(computer)
Print the product of odd numbers between 100 and 200.​

Answers

Answered by ADVIK143
4

Answer:

for x in range(100,201):

if x % 2 != 0:

print(x)

Hope it helps!!

Btw next time please write the language in which you want the code...

Have a great day!!

Similar questions