A program that read an integer & display odd or even in C++.

#include<stdio.h>
#include<conio.h>
#include<iostream.h>

void main()
{
    int n;
    clrscr();
    cout<<"Enter any number = ";
    cin>>n;
   
    if(n%2==0)
       cout<<n<<" is even number";
    else
       cout<<n<<" is odd number";

    getch();

}



///////////////////////////////////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........