Hi all,
Someone is going to laugh at me for this one.
Can you have two arguments in a switch case statement?
switch (choiceA, choiceB)
{
case 1,2:
cout <<"Information";
break;
default:
break;
}