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


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


java.lang.Math.cos() 用於返回角度的三角餘弦。此方法返回 -1 到 1 之間的值。

用法

public static double cos(double a)

參數

a = an angle, in radians

返回

It returns the cosine value of the argument.
  • 如果參數是正數或負數,此方法將返回餘弦值。
  • 如果參數是 NaN 或無窮大,則此方法將返回 NaN。

例子1

public class CosExample1
{
    public static void main(String[] args) 
    {
        double a = 60;
        // converting values to radians
        double b = Math.toRadians(a);
        System.out.println(Math.cos(b));
    }
}

輸出:

0.5000000000000001

例子2

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

輸出:

1.0

例子3

public class CosExample3
{
    public static void main(String[] args) 
    {
        double a = 1.0/0;
        // converting values to radians
        double b = Math.toRadians(a);
        System.out.println(Math.cos(b));
    }
}

輸出:

NaN

示例 4

public class CosExample4
{
    public static void main(String[] args) 
    {
        double a = Double.MAX_VALUE;
        double b = Math.toRadians(a);
        System.out.println(Math.cos(b));
    }
}

輸出:

0.37127941669980136






相關用法


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