Computer Science, asked by tanvigupta1252004, 9 months ago

Write a program to input a number and check whether the given (3)

number is odd or even.​

Answers

Answered by hamzakhan64538
0

Answer:

hello to all my friends

Answered by ssanjith03
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