if(user_input.equals("show") == false) {
// ...
}
which is the same as:
if(!user_input.equals("show")) {