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


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



描述

这个java.lang.Math.sin(double a)角度的三角正弦。特殊情况~

  • 如果参数为 NaN 或无穷大,则结果为 NaN。

  • 如果自变量为零,则结果为零,其符号与自变量相同。

声明

以下是声明java.lang.Math.sin()方法

public static double sin(double a)

参数

a─ 一个角度,以弧度为单位。

返回值

此方法返回参数的正弦值。

异常

NA

示例

下面的例子展示了 lang.Math.sin() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class MathDemo {

   public static void main(String[] args) {

      // get two double numbers numbers
      double x = 45;
      double y = -180;

      // convert them to radians
      x = Math.toRadians(x);
      y = Math.toRadians(y);

      // print the trigonometric sine for these doubles
      System.out.println("Math.sin(" + x + ")=" + Math.sin(x));
      System.out.println("Math.sin(" + y + ")=" + Math.sin(y));
   }
}

让我们编译并运行上面的程序,这将产生以下结果——

Math.sin(0.7853981633974483)=0.7071067811865475
Math.sin(-3.141592653589793)=-1.2246467991473532E-16

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Math.sin() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。