Write a program to input a number and check whether the given (3)
number is odd or even.
Answers
Answered by
0
Answer:
hello to all my friends
Answered by
1
Answer:
I will write using python
Explanation:
a=int(input("Enter a number: "))
if a%2==0:
print("Even")
else:
print("odd")
Similar questions