Computer Science, asked by areen98, 5 months ago

enter 10 numbers and write a program to input only even number.​

Answers

Answered by RuwaisnZaid
1

Explanation:

for i in range(10):

x = int(inputs ("enter a no"))

if x%2==0:

print("even",x)

Similar questions