write a python program to check whether a number is even
Answers
Answered by
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
0
Explanation:
Answer is option d
okkkkkkk
Similar questions
Social Sciences,
4 months ago
Math,
4 months ago
Math,
4 months ago
Chemistry,
9 months ago
Geography,
9 months ago
Social Sciences,
1 year ago