我在Eclipse中看不到输出为什么?

时间:2015-02-21 01:38:02

标签: java eclipse console output

问题是当我试图在eclipse中看到编程结果时我不能拥有控制台窗口,但是当我运行代码以确保没有错误时,没有任何东西出现在那里,这是我试图的代码跑吧

package com.java24hours;

public class NewRoot {

    public static void main(String[] args) {


        int number = 100;
        if (args.length > 0) {

            number = Integer.parseInt(args[0]);

            System.out.println(" The square root of "
                    + number
                    + " is "
                    + Math.sqrt(number));

        }
    }

}

1 个答案:

答案 0 :(得分:1)

这是因为您没有为main方法提供任何运行时值。为主方法提供值:

右键单击 NewRoot

转到运行方式--->运行配置。

运行配置窗口中点击 Argumets 标签:

程序参数字段

中提供100之类的任何值

然后点击应用按钮,然后点击运行按钮

您将获得输出: 100的平方根为10.0