📜  Java中的 StrictMath tan() 方法

📅  最后修改于: 2022-05-13 01:54:22.687000             🧑  作者: Mango

Java中的 StrictMath tan() 方法

Java .lang.StrictMath.tan()是Java中的一个内置函数,它返回角度的三角正切。

句法:

public static double tan(double ang)

参数:此函数接受一个参数ang ,它是一个双变量,表示一个角度(以弧度为单位),其三角正切将由函数返回。

返回值:此方法返回作为参数传递给函数的角度的正切。它引起了特殊情况:

  • 如果参数是NaNinfinity ,则该方法返回NaN
  • 如果参数为零,则结果为零,其符号与参数相同。

例子:

Input : ang = 0.5235987755982988(30 degree)
Output : 0.5773502691896257

Input : ang = 0.7853981633974483(45 degree)
Output : 0.9999999999999999

下面的程序说明了Java中的Java.lang.StrictMath.tan()函数:

方案一:

// Java Program to illustrate 
// StrictMath.tan() function
  
import java.io.*;
import java.math.*;
import java.lang.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        double ang = (60 * Math.PI) / 180;
  
        // Display the trigonometric tangent of the angle
        System.out.println("tangent value of 60 degrees : "
                           + StrictMath.tan(ang));
    }
}
输出:
tangent value of 60 degrees : 1.7320508075688767

方案二:

// Java Program to illustrate 
// StrictMath.tan() function
  
import java.io.*;
import java.math.*;
import java.lang.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        double ang = 77.128;
        // Convert the angle to its equivalent radian
        double rad = StrictMath.toRadians(ang);
  
        // Display the trigonometric tangent of the angle
        System.out.println("tangent value of 77.128 degrees : "
                           + StrictMath.tan(rad));
    }
}
输出:
tangent value of 77.128 degrees : 4.376055350774854

参考: https: Java/lang/StrictMath.html#tan()