In C++ it would be:


switch (Variable_to_test)
{
case 'choice_1':
{
cout<<"Hi";
break;
...