#include<iostream>
using namespace std;
int main()
{int a;
cout<<" \n\n\n \t\t\t Enter the number : ";
cin>>a;
cout<<"\n--------------------------------\n" ;
if(a%2==0)
{cout<<" \n\n\t The number is --> Even Number \n " <<endl;}
else
{
cout<<" \n\n\t The number is --> odd Number" <<endl;}
cout<<" \n ---------------------";
cin.get();
return 0 ;}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)