Please help with this. I am very new to this, and I need this badly. I need to create a program where it lets you choose from addition or subtraction. This is my current program:

import javax.swing.JOptionPane;

public class RationalZ {

    public static void main(String args[]) {

        JOptionPane.showMessageDialog(null,
            "Enter the letter A for Addition and B Subtraction");

        String choice = JOptionPane.showInputDialog(
            "A=Addition B=Subtraction");

        if (choice == "a") {

            String strNum1 = JOptionPane.showInputDialog(
                "Enter a Number");
            String strNum2 = JOptionPane.showInputDialog(
                "Enter a second number");

            int aNum1 = Integer.parseInt(strNum1);
            int aNum2 = Integer.parseInt(strNum2);

            JOptionPane.showMessageDialog(null, aNum1 + aNum2);

            System.exit(0);

        } else {
            System.exit(0);
        }
    }
}

What's wrong? Even in the first step I can't get it.

link|improve this question
Reformatted code; please revert if incorrect. – trashgod Dec 4 '10 at 2:27
1  
please be specific and explain what your problem is. – Kirk Woll Dec 4 '10 at 2:29
feedback

1 Answer

You might want to review the difference between the == operator and the equals() method.

Addendum: It's fairly easy to find good information on Java String comparison methods; it's a little harder to find a good explanation of why == with String is usually wrong.

Addendum:

Do I use another if statement?

You've got a good if-then statement; now you need to expand it to an if-then-else statement. Notice how you can add more if-then statements after the else.

link|improve this answer
what do you mean? im sorry but im totaly and i mean freshly new to this stuff... – Richard Dec 4 '10 at 2:50
my problem is that im stuck and i dont know what to do anymore T.T – Richard Dec 4 '10 at 2:51
@Richard: I've added two links above that may help. Don't hesitate to ask additional questions. – trashgod Dec 4 '10 at 2:57
i placed this if (choice equals(a)) { but i get errors uhmm what would be the correct way? of using the equals()? – Richard Dec 4 '10 at 3:24
@Richard: You're almost there; equals() is a method, so you'd use the choice.equals("a") syntax. Notice how "a".equals(choice) is a nearly equivalent test. Now, what if the user types "A"? Do you see a method for that? – trashgod Dec 4 '10 at 3:34
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.