Computer Science, asked by Anonymous, 9 months ago

write a python program to check whether a number is even​

Answers

Answered by Reya21
5

Answer:

#Code to determine if a number is odd or even

num=int(input("Enter the number to be checked: ")        

if  num%2==0:

    print("The number is EVEN")

else:

    print('The number is ODD')

Answered by routgitanjali026
0

Explanation:

Answer is option d

okkkkkkk

Similar questions