Upper and Lower case?

hey guys i need help with upper and lower case character.
im trying to get the program to ask to input the choice A, B, or C. but instead of upper case only i would like to use lower case as well so if its choice A than i can just put a and so on.

 
  if (package == 'A', 'a' || package == 'B', 'b' || package == 'C', 'c')


could anyone please help me? I only need choice A B AND C ONLY thanks
if (package == 'A' || package == 'a'){

}
else if (package == 'B' || package == 'b'){

}
else if (package == 'C' || package == 'c'){

}

Is this what you mean?
Topic archived. No new replies allowed.