C++ Program to Check whether given number is Even or Odd

By | 25.12.2016

Check whether given number is Even or Odd


Write a C++ Program to Check whether given number is Even or Odd. Here’s simple Program to Check whether given number is Even or Odd in C++ Programming Language.


Here is source code of the C++ Program to Check whether given number is Even or Odd. The C++ program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.


SOURCE CODE : :


/*  C++ Program to Check whether given number is Even or Odd  */

#include<iostream>
using namespace std;

int main()
{
  int i,n;

  cout<<"Enter any positive number :: ";
  cin>>n;

    if(n%2==0)
    {
        cout<<"\nThe Entered Number [ "<<n<<" ] is EVEN number.\n";
    }
    else
    {
        cout<<"\nThe Entered Number [ "<<n<<" ] is ODD number.\n";
    }

    return 0;
}

Output : :


/*  C++ Program to Check whether given number is Even or Odd  */

Enter any positive number :: 47

The Entered Number [ 47 ] is ODD number.

Process returned 0

Above is the source code for C++ Program to Check whether given number Even or Odd which is successfully compiled and run on Windows System.The Output of the program is shown above .

If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach up to you in short interval.


Thanks for reading the post….

5 1 vote
Article Rating
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments