Q. Python program to check whether the given number N is even or odd.

Here you will find an algorithm and program in Python programming language to check whether the given number is even or odd number. First let us understand what is even number and odd number.

Explanation : If the number is divisible by 2 then the number is even number and if the number is not divisible by 2 then the number is odd number.

For Example : 4 is Even number as it is divisible by 2 and 5 is odd number as it is not divisible by 2.

Even Odd Algorithm

START
Step 1: [ Take Input ] Read: Number N
Step 2: Check: If N%2 == 0 Then
Print : N is an Even Number.
Else
Print : N is an Odd Number.
STOP



Python Program to Check Whether a Number is Even or Odd

N=10
if (N % 2) == 0:
print("The number {0} is Even number".format(N))
else:
print("The number {0} is Odd number".format(N))

Output

The number 10 is Even number