So basically just to give you an example of what they mean I'll give you an example from your own code. For your first if statement..
Quote:
Originally Posted by T3hkid
if(Answer=="Y" ||Answer=="y"){...
}
|
but it should really be
Quote:
Originally Posted by T3hkid
if(Answer.equalsIgnoreCase("Y")){
...
}
|