174,508 views
34 votes
34 votes
Write an algorithm to print the odd number from 100 to 1​

User Enock
by
2.7k points

1 Answer

8 votes
8 votes

Answer:

In python:

for x in range(0,100):

if x % 2 == 1:

print(x)

User Arun Sooraj
by
2.3k points