Java StrictMath tan()方法

java.lang.StrictMath.tan() 方法返回一个角的三角函数正切值。它包括以下情况:

  • 如果参数为NaN或无穷大,那么结果为NaN。
  • 如果参数是零,那么结果是参数为零相同的符号。

1 语法

public static double tan(double a)

2 参数

a : 这是一个角度,以弧度为单位。

3 返回值

此方法返回参数的正切。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath tan()方法
 */
import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = (45*Math.PI)/180 , d2 = 0.0;

    // returns the trigonometric tangent of an angle
    double tanValue = StrictMath.tan(d1); 
    System.out.println("tangent value of d1 : " + tanValue);
        
    tanValue = StrictMath.tan(d2); 
    System.out.println("tangent value of d2 : " + tanValue);
  }
}

输出结果为:

tangent value of d1 : 0.9999999999999999
tangent value of d2 : 0.0

 

热门文章

优秀文章