java中怎么用sqrt()

2025-01-05 13:48:18
推荐回答(3个)
回答(1):

pulic class TestSqrt
{
public static void main(String[] args)
{
System.out.println("9的平方根是:"+Math.sqrt(9));

}

}
输出:3.0
Math类在java.lang包下,编译器默认是导入这个包中的所有类,所以无需导入,并且Math类中的方法全部是静态的,使用它的方法时无需创建对象,建议你百度"java se 6 api",一看api文档你就明白了,祝你好运!

回答(2):

public class ceshi {
public static void main(String[] args) {
double a=3.0;
double d=Math.sqrt(a);
System.out.println(d);
}
}

回答(3):

问度娘大嫂!