im only trying to convert to upper case only if the user inputs them in lower case, if they are already upper case then i dont need to do anything...
we just learned about the islower, isupper, tolower, toupper today so im trying that instead of doing the -+32 thing
Eh, you don't need to check if something's lowercase before calling toupper on it -- you can just do key1 = toupper(key1);
and it'll work regardless of whether key1 was previously lowercase, uppercase, or neither.