I am having a problem with my program not reading the OR statements right.
do
{
blah blah blah
}while(y!=1||y!=2);
I have also used it as this format, ((y!=1)||(y!=2))
The program is marking it as true and keeping me stuck the loop even though y is == 1 or 2.