In the 1 month experience I\'ve had with any programming language, I\'ve assumed that switch case conditions would accept anything in the parenthes
switch
case
You can do -
switch(c) { case 'W': case 'w': //your code which will satisfy both cases break; // .... }