Computer Science, asked by padshahkowsar186, 6 hours ago

output of x-1 while (x_2) : print(x)​

Answers

Answered by Anonymous
2

Answer:

x = int(input())

while x < 10:

if x%2 == 0:

print(str(x) + " is even")

break

else:

print(str(x) + " is odd")

Answered by Souvickpal
4

Answer:

C D

PLEASE MARK ME AS BRAINLIST

Similar questions