當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Math.sqrt()用法及代碼示例


java.lang.Math.sqrt() 用於返回數字的平方根。

用法

public static double sqrt(double x)

參數

x= a value

返回

This method returns the square root of x.
  • 如果參數是雙正值,則此方法將返回給定值的平方根。
  • 如果參數為 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));
    }
}

輸出:

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






相關用法


注:本文由純淨天空篩選整理自 Java Math.sqrt() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。