Write a python program to find odd numbers from 21-99, by using while loop.
Answers
Answered by
1
counter = 21
while counter <= 99:
if counter % 2 != 0:
print(counter)
counter += 1
Answered by
0
Answer:
counter = 21
while counter <= 99:
if counter % 2 != 0:
print(counter)
counter += 1
Similar questions