Code:
int ch;
cin>>ch;
switch(ch)
{
case 1:
cout<<"one";
break;
case 2:
cout<<"two";
break;
case 3:
cout<<"three";
break;
}
Comment