Hi,
I am using the OR operator in my while loop and its not very responsive:
while (transaction != 'Q' || transaction != 'q' ){}
The user previously entered a character for the variable transaction, however when the user enters 'Q' or 'q', the while loop is not skipped. Can anyone give me some insight?
Thanks