OK, so for our assignment we are asked to make a loop where it continues to prompt the user for an unsigned long long. After they give their number, a table is displayed, and after the table of text, the user is reprompted for a new value. If they want to quit, they have to use 'q' or 'Q'. If they input a different letter, an error message should occur. So, the only way I made it quit was by using a cin.fail() statement, but that doesn't work because any letter that is put will exit the program. I tried using if statements with the "value == 'q' or 'Q'" but it doesn't seem to work since the variable is an unsigned long long. Any ideas on how to fix this problem?