2

请帮助解决这个问题。我对此很陌生,我非常需要这个。我需要创建一个程序,让您可以选择加法或减法。这是我目前的程序:

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);
        }
    }
}

怎么了?即使在第一步我也无法得到它。

4

1 回答 1

6

您可能想要查看==运算符和equals()方法之间的区别。

附录:很容易找到关于 Java比较方法的好信息;很难找到一个很好的解释为什么with通常是错误的。String ==String

附录:

我是否使用另一个 if 语句?

你有一个很好的if-then陈述;现在您需要将其扩展为if-then-else语句。请注意如何if-thenelse.

于 2010-12-04T02:33:53.067 回答