Computer Science, asked by karayatmansi, 2 months ago

write a pragram to check the number is even a
not using the
the į statement ?​

Answers

Answered by lakshay12373
0

Answer:

num = int(input("enter your number: ")

if(num % 2) ==0:

print(num, " it is a even number")

else:

print(num, "it is not a even number it is odd")

Explanation:

Hope it will help.

Similar questions