Computer Science, asked by devendrapalsingh1542, 4 months ago

Write a python program to find odd numbers from 21-99, by using while loop.​

Answers

Answered by valeriy69
1

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

counter = 21

while counter <= 99:

if counter % 2 != 0:

print(counter)

counter += 1

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Answered by Japji21
0

Answer:

counter = 21

while counter <= 99:

if counter % 2 != 0:

print(counter)

counter += 1

Similar questions