write a program that takes a number and check whether the given number is even or odd
Answers
Answered by
2
Answer:
num = int(input("Enter a number: ")) if (num % 2) == 0: print("{0} is Even number". format(num))
Answered by
1
Answer:
Find the area of different leave and compare their area.write a program that takes a number and check whether the given number is even or odd
Similar questions