Hi, I'm having a problem with this part of my code:
} while ((menu2.equals("4") == false) || ((menu2.equals("3")) == false));
The compiler seems to be ignoring it for me... is there something wrong? I basically want the loop to end if the String menu2 is either "4" or "3". What exactly am I doing wrong?
Thanks :)