阅读下面的问题。如何使用Mac进行操作?我正在学习Java并使用netbeans

问题描述 投票:-5回答:1

写一个程序找到a的平方根命令行的说法,并将结果输出到小数点后两位]

java arguments output
1个回答
-1
投票

读取参数并将其转换为双精度。

使用Math.sqrt方法求平方根。

如果您有多个命令行参数,请使用循环并将下面的代码放入循环中。

class Gfg { 

    // driver code 
    public static void main(String args[]) 
    { 
        if (args.length > 0) 
        {
           double a = new Double(args[0]).doubleValue(); 
        }

        System.out.println(Math.sqrt(a)); 
    } 
} 
© www.soinside.com 2019 - 2024. All rights reserved.