I'm confused. You want the user to choose one of the following, but you're inputting three values.
Do you mean something like this:
1 2 3 4 5 6 7 8 9 10 11 12 13
int choice;
...
cin >> choice;
switch (choice)
{
case 1: // Do something if the user entered 1
break;
case 2: // Do something if the user entered 2
break;
case 3: // Do something if the user entered 3
break;
default: cout << "Valid choices are 1-3" << endl;
}