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


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


java.lang.Math.acos() 用於計算角度的三角反餘弦。反餘弦也稱為餘弦的倒數。此方法返回 0.0 和 pi 之間的值。

用法

public static double acos(double a)

參數

a = the value whose arc cosine is to be returned.

返回

It returns the arc cosine of the argument.
  • 如果參數是正數或負數,此方法將返回反餘弦值。
  • 如果參數為 NaN 或超出範圍 -1 和 1,則此方法將返回 NaN。

例子1

public class AcosExample1
{
    public static void main(String[] args) 
    {
        double a = 1.0;
        System.out.println(Math.acos(a));
    }
}

輸出:

0.0

例子2

public class AcosExample2
{
    public static void main(String[] args) 
    {
        double a = -1.0;
        System.out.println(Math.acos(a));
    }
}

輸出:

3.141592653589793

例子3

public class AcosExample3
{
    public static void main(String[] args) 
    {
        double a = 1.380;
        // value of a is greater than 1 so Output is NaN
        System.out.println(Math.acos(a));
    }
}

輸出:

NaN

示例 4

public class AcosExample4
{
    public static void main(String[] args) 
    {
        double a = Math.PI;
        // return NaN because Math.PI value is 3.414 that is greater than 1
        System.out.println(Math.acos(a));
    }
}

輸出:

NaN

例 5

public class AcosExample5
{
    public static void main(String[] args) 
    {
        double a = Math.PI;
        double b = Math.toRadians(a);
        System.out.println(Math.acos(b));
    }
}

輸出:

1.5159376794536454






相關用法


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