写一个程序找到a的平方根命令行的说法,并将结果输出到小数点后两位]
读取参数并将其转换为双精度。
使用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));
}
}