#include using namespace std; int main() { int num, con; clrscr(); cout<<"Input any integer "; cin>>num; dir=num; con=num%2; if (con==0) { cout<<"\nInteger is Even"; getch(); } else { cout<<"\nInteger is odd"; return 0; }