计算器在第一个数字中不计算多个数字,为​​什么?

时间:2019-06-16 23:56:11

标签: java swing

我正在制作一个计算器程序,但它不计算右侧 如果右边不止一个数字 喜欢 99 + 1不会计算此示例 但是如果是一个数字 喜欢 9 + 1然后它将计算它 而且这个问题只在右侧

class ActionListeners implements ActionListener {

    @Override

    public void actionPerformed(ActionEvent e) {
        Object o = e.getSource();
        int[] r = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
        if (o == result) {

            String s = t1.getText();
            int indexno = s.indexOf('+');

            String s3 = s.substring(0, indexno);
            String s4 = s.substring(indexno);

            for (int b : r) {
                if (s.charAt(b) == '+') {
                    int n1 = Integer.parseInt(s3);
                    int n2 = Integer.parseInt(s4);
                    JOptionPane.showMessageDialog(null, n1 + n2);
                }
                if (s.length() < s.charAt(b)) {
                    break;
                }

            }

0 个答案:

没有答案