Situatie
A number is even if it is perfectly divisible by 2. When the number is divided by 2, we use the remainder operator %
to compute the remainder. If the remainder is not zero, the number is odd.
Solutie
Pasi de urmat
num = int(input(“Enter a number: “))
if (num % 2) == 0:
print(“{0} is Even”.format(num))
else:
print(“{0} is Odd”.format(num))
Output 1
Enter a number: 21
21 is Odd
Output 2
Enter a number: 12
12 is Even
Leave A Comment?