Good Afternoon,
I want to convert this if-else statement to a switch statement.
The if-statement is:
int x;
cout<<"GIve me an int and I tell you whether is even of odd ";
cin>>x;
if (x%2==0)
cout<<x<<" is even."<<endl;
else
cout<<x<<" is odd."<<endl;