Java Rookie试图编写计算器代码

时间:2016-12-17 08:04:10

标签: java math calculator

我是Java的新手,我正在尝试编写计算器代码。数字没有计算,我不确定为什么会发生这种情况。

这是我的代码:

import java.util.Scanner;

public class Calculator {
    public static void main(String[] args){

        System.out.println("Type in any 2 numbers: ");
        Scanner math = new Scanner(System.in);
        int number = math.nextInt();
        int num2 = math.nextInt();

        System.out.println("Which operation would you like to use? (+,-,*,/)");
        String oper = math.next();

        if (oper == "+"){
            int total = number + num2;
            System.out.println(total);
        }
        else if (oper == "-"){
            int total = number - num2;
            System.out.println(total);
        }
        else if (oper == "*"){
            int total = number * num2;
            System.out.println(total);
        }
        else if (oper == "/"){
            int total = number / num2;
            System.out.println(total);
        }
    }

}

2 个答案:

答案 0 :(得分:1)

你应该使用Java中的equals方法来比较字符串。 当你在类中使用“==”时,它只比较引用而不是值。 这应该适用于此修复

public class Calculator {
    public static void main(String[] args){

        System.out.println("Type in any 2 numbers: ");
        Scanner math = new Scanner(System.in);
        int number = math.nextInt();
        int num2 = math.nextInt();

        System.out.println("Which operation would you like to use? (+,-,*,/)");
        String oper = math.next();

        if (oper.equals("+")){
            int total = number + num2;
            System.out.println(total);
        }
        else if (oper.equals("-")){
            int total = number - num2;
            System.out.println(total);
        }
        else if (oper.equals("*")){
            int total = number * num2;
            System.out.println(total);
        }
        else if (oper.equals("/")){
            int total = number / num2;
            System.out.println(total);
        }
    }

答案 1 :(得分:0)

@Ran Koretzki是对的,我的代码有一个可能的改进。您正在读取用户的输入并指定“整数”值。即使此代码未提示任何编译时或运行时错误,代码中也存在逻辑问题。

您正在划分两个整数并将结果分配给整数。当您尝试划分两个整数并且没有余数时,此方法很有效。但如果在分割过程中有剩余部分,则会丢失此余数或分数。为了解决这个问题,您应该将输入读入双值并将操作结果分配为双变量。