CODE
string choice;
cin >> choice;
char ch = choice[0];
ch = toupper(ch);
switch (ch) {
case 'A':
// stuff...
break;
case 'B':
// stuff...
break;
case 'C':
// stuff...
break;
case 'D':
// stuff...
break;
}
cin >> choice;
char ch = choice[0];
ch = toupper(ch);
switch (ch) {
case 'A':
// stuff...
break;
case 'B':
// stuff...
break;
case 'C':
// stuff...
break;
case 'D':
// stuff...
break;
}
