As in, if you had an if statement, for example:
if(endProgramChooseType != 'y' || 'Y' || 'N' || 'n'){
(code for exiting program)
}
How would you do that in a switch statement? without doing
case 'a':
case 'A':
case 'b':
case 'B':
case 'c':
etc.