当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。