编辑的程序显示早期程序的结果

时间:2014-06-24 03:11:58

标签: java netbeans-7

我运行了一个简单的计算器程序,其中包含加法和乘法等功能,程序提供了所需的结果。但在这里讨论之后,我尝试编辑我的代码,但在运行项目后,它仍然给我早期程序的错误。所有注释的代码都来自我之前的程序。

请在下面找到我的程序,并告诉我我做错了什么。更改值后,程序仍然会给出相同的结果。

public class Calculator {

    public static void main(String[] args) {
        int a = 6;
        int b = 5;
        // int c;
        // c = addition(a,b); //calling method and passing values for a and b
        System.out.println(addition(a, b));
    }

    public static int addition(int a, int b) {
        // int c;
        // c= a+b;
        return a + b;
    }
} // gives result of 11

1 个答案:

答案 0 :(得分:0)

代码工作正常,您可能在运行之前没有编译该程序。 如果你在eclipse菜单中使用eclipse启用自动构建:Project - >自动构建 或者在命令行中编译它:

javac Calculator.java
java Calculator