cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Upper and Lower case?
Upper and Lower case?
Oct 13, 2014 at 10:08pm UTC
akai09
(28)
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
Oct 13, 2014 at 10:11pm UTC
coltehrman
(67)
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.