The or statement in the first line of my if statement is not working as i would expect it to, any suggestions?
if(answer == "deposit" || "Deposit"){
        System.out.println("How much would you like to deposit?");
        final int deposit = console.readInt();
        account.deposit(deposit);
        System.out.println( "This leaves you with $" + formatter.format(account.getBalance()) + " in your account");
    }else if(answer == "Check Balance"){
        System.out.println( "You have $" + formatter.format(account.getBalance()) + " in your account");
    }else if(answer == "Withdraw"){
        System.out.println("How much would you like to take out?");
        final int with = console.readInt();
        account.withdraw(with);
        System.out.println( "This leaves you with $" + formatter.format(account.getBalance()) + " in your account");
    }else{
        System.out.println("You didn't enter a correct term, please try again.");
    }
 
     
     
     
     
     
     
    