Instead of doing
can you do something likeCode:if ( strCookies=="good" || strCookies=="better" )
also, is there any way to put multiple items on a case line:Code:if ( strCookies==("good" || "better") )
e.g.
Code:case apples||oranges:
{
cout<<"either apples or oranges were in the box"<<endl;
break;
}

