I'm used to if/else. Can someone tell me if this correct or not. It's not pulling up an error but it's not outputting what I want it to output either. Thank you!
char pick;
cin >> pick;
if(pick == 'a' || pick == 'A')
stuff inside here
//For case switch... can you do the following:
switch(pick)
{
case ('a' || 'A'):
stuff here;
break;
case ('b' || 'B'):
stuff here;
break;
}