Q:

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

belongs to collection: C++ Number Solved Programs

0

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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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 .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ Number Solved Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Write a C++ Program to Check a number is Prime or ... >>
<< C++ Program to find Square Root of a number using ...