Java StrictMath sqrt()方法
java.lang.StrictMath.sqrt() 方法返回double值的正平方根。它包括以下情况:
- 如果参数为NaN或小于零,那么结果为NaN。
- 如果参数为正无穷大,那么结果为正无穷大。
- 如果参数为正零或负零,那么结果与参数一样。
否则,其结果是最接近参数值的真实数学平方根的double值。
1 语法
public static double sqrt(double a)
2 参数
a : 这是所使用的值。
3 返回值
此方法返回正平方的根。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StrictMath sqrt()方法
*/
import java.lang.*;
public class StrictMathDemo {
public static void main(String[] args) {
double d1 = 121 , d2 = -729, d3 = 0.0;
// returns the positive square root of a double value.
double sqrtValue = StrictMath.sqrt(d1);
System.out.println("square root of " + d1 + " = " + sqrtValue);
sqrtValue = StrictMath.sqrt(d2);
System.out.println("square root of " + d2 + " = " + sqrtValue);
sqrtValue = StrictMath.sqrt(d3);
System.out.println("square root of " + d3 + " = " + sqrtValue);
}
}
输出结果为:
square root of 121.0 = 11.0
square root of -729.0 = NaN
square root of 0.0 = 0.0
热门文章
优秀文章