calculator bug java
hello guys i am with a bug in my calculator , i was programing in netbeans and .......you will see, this is the code : import java.util.Scanner; public class Calculadora { public static void main(String[] args) { Scanner input = new Scanner (System.in); double op1, op2, resultado ; String operaçao = new String (); String soma = new String (); String subtraçao = new String (); String multiplicaçao = new String (); String divisao = new String (); System.out.println("insira o primeiro numero"); op1 = input.nextDouble(); System.out.println("insira o segundo numero "); op2 = input.nextDouble(); System.out.println("que operaçao deseja fazer"); Scanner r = new Scanner (System.in); operaçao = r.next(); if (operaçao == "soma" ){ resultado = op1 + op2 ; System.out.println(resultado); }else if (operaçao == "subtraçao " ){ resultado = op1 - op2 ; System.out.println(resultado); }else if ( operaçao =="multiplicaçao"){ resultado = op1 * op2 ; System.out.println(resultado); }else if (operaçao == "divisao"){ resultado = op1 / op2 ; System.out.println(resultado); }else { System.out.println("insia uma operaçao valida como : soma , subtraçao , multiplicaçao , divisao"); } } } soo this is the code and what happens is that when i put the operation the output is always "invalid operation pls enter sum......" ; and the system.out.println(); they are is portuguese so go to gooogle tradutor but i think that is prety obvius