の java.lang.Math.sqrt() 数値の平方根を返すために使用されます。
構文
public static double sqrt(double x)
パラメータ
x= a value
戻る
This method returns the square root of x.
- 引数が正の double 値の場合、このメソッドは指定された値の平方根を返します。
- 引数が次の場合 NaN またはゼロ未満の場合、このメソッドは次の値を返します。 NaN 。
- 引数が肯定的な場合 無限大 、このメソッドは正の値を返します 無限大 。
- 引数が正または負の場合 ゼロ 、このメソッドは結果を次のように返します。 ゼロ 同じ記号で。
例1
public class SqrtExample1 { public static void main(String[] args) { double x = 81.0; // Input positive value, Output square root of x System.out.println(Math.sqrt(x)); } }今すぐテストしてください
出力:
1nf 2nf 3nf
9.0
例 2
public class SqrtExample2 { public static void main(String[] args) { double x = -81.78; // Input negative value, Output NaN System.out.println(Math.sqrt(x)); } }今すぐテストしてください
出力:
NaN
例 3
public class SqrtExample3 { public static void main(String[] args) { double x = 0.0/0; // Input NaN, Output NaN System.out.println(Math.sqrt(x)); } }今すぐテストしてください
出力:
NaN
例 4
public class SqrtExample4 { public static void main(String[] args) { double x = 1.0/0; // Input positive infinity, Output positive infinity System.out.println(Math.sqrt(x)); } }今すぐテストしてください
出力:
Infinity
例5
public class SqrtExample5 { public static void main(String[] args) { double x = 0.0; // Input positive Zero, Output positive zero System.out.println(Math.cbrt(x)); } }今すぐテストしてください
出力:
0.0