📜  带有示例的Java atan() 方法

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

带有示例的Java atan() 方法

Java.lang.Math.atan()返回介于 -pi/2 到 pi/2 之间的角度的反正切。如果参数为 NaN,则结果为 NaN。

注意:如果参数为零,则结果为零,符号与参数相同。

句法 :

public static double atan(double a)
Parameter :
a : the value whose arc tangent is to be returned.
Return :
This method returns the arc tangent of the argument.

示例:显示Java.lang.Math.atan()方法的工作。

// Java program to demonstrate working
// of java.lang.Math.atan() method
import java.lang.Math;
  
class Gfg {
  
    // driver code
    public static void main(String args[])
    {
        double a = Math.PI;
  
        System.out.println(Math.atan(a));
  
        double c = 344.0;
        double d = 0.0;
        double e = -0.0;
        double f = 1.5;
  
        System.out.println(Math.atan(c));
  
        // Input positive zero
        // Output positive zero
        System.out.println(Math.atan(d));
  
        // Input negative zero
        // Output negative zero
        System.out.println(Math.atan(e));
  
        System.out.println(Math.atan(f));
    }
}

输出:

1.2626272556789115
1.5678893582391513
0.0
-0.0
0.982793723247329