Computer Science, asked by gudduoraon780, 8 months ago

Any other algorithm to find number is even or odd

Answers

Answered by hackden
1

This program is in Python-

number= int( input("Enter your number"))

if number%2 ==0 :

print("This is even number")

else:

print("This is odd number")

Similar questions