Java Math.sqrt() 方法
Java Math.sqrt() 方法返回参数的算术平方根
语法
double sqrt(double d)
参数
参数 | 说明 |
---|---|
d | 任何原生数据类型 |
返回值
返回参数的算术平方根
说明
下面的范例使用 Math.sqrt() 方法返回参数的算术平方根
public class Test{ public static void main(String args[]){ double x = 11.635; double y = 2.76; System.out.printf("e 的值为 %.4f%n", Math.E); System.out.printf("sqrt(%.3f) 为 %.3f%n", x, Math.sqrt(x)); } }
编译运行以上 Java 代码,输出结果如下
e 的值为 2.7183 sqrt(11.635) 为 3.411