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
Computer Science,
2 months ago
English,
2 months ago
Math,
2 months ago
Science,
4 months ago
Biology,
10 months ago
Economy,
10 months ago
Social Sciences,
10 months ago