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


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


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

用法

public static double sin(double a)

參數

a = an angle, in radians

返回

It returns the sine value of the argument.
  • 如果參數為正數或負數,此方法將返回正弦值。
  • 如果參數是 NaN 或無窮大,則此方法將返回 NaN。
  • 如果參數為零,此方法將返回與參數相同符號的零。

例子1

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

輸出:

0.8660254037844386

例子2

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

輸出:

1.0

例子3

public class SinExample3
{
    public static void main(String[] args) 
    {
        double a = 1.0/0;
        // converting values to radians
        double b = Math.toRadians(a);
        // Input infinity, Output NaN
        System.out.println(Math.sin(b));
    }
}

輸出:

NaN

示例 4

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

輸出:

-0.9285211870146288






相關用法


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