Java - StrictMath tan(double x) 方法



描述

Java StrictMath sin(double x) 方法返回双精度值的三角正弦值。特殊情况 -

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

  • 如果参数为零,则结果为与参数符号相同的零。

计算结果必须在精确结果的 1 ulp 之内。

声明

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

public static double sin(double x)

参数

x − 要返回其三角正弦值的数字。

返回值

此方法返回 x 的三角正弦值。

异常

示例:获取正双精度值的三角正弦值

以下示例演示了如何使用 StrictMath sin() 方法获取正双精度值的三角正弦值。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = 45.0;

      // convert it to radian
      x = StrictMath.toRadians(x);

      // print the trigonometric sine for this double
      System.out.println("StrictMath.sin(" + x + ")=" + StrictMath.sin(x));
   }
}

输出

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

StrictMath.sin(0.7853981633974483)=0.7071067811865475

示例:获取负双精度值的三角正弦值

以下示例演示了如何使用 StrictMath sin() 方法获取负双精度值的三角正弦值。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = -45.0;

      // convert it to radian
      x = StrictMath.toRadians(x);

      // print the trigonometric sine for this double
      System.out.println("StrictMath.sin(" + x + ")=" + StrictMath.sin(x));
   }
}

输出

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

StrictMath.sin(-0.7853981633974483)=-0.7071067811865475

示例:获取零双精度值的三角正弦值

以下示例演示了如何使用 StrictMath sin() 方法获取零双精度值的三角正弦值。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a double number
      double x = 0.0;

      // convert it to radian
      x = StrictMath.toRadians(x);

      // print the trigonometric sine for this double
      System.out.println("StrictMath.sin(" + x + ")=" + StrictMath.sin(x));
   }
}

输出

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

StrictMath.sin(0.0)=0.0
java_lang_strictmath.htm
广告