當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java atan()用法及代碼示例


java.lang.Math.atan()返回介於-pi /2到pi /2之間的角度的反正切。如果參數為NaN,則結果為NaN。

注意:如果自變量為零,則結果為零,其符號與自變量相同。

用法:

public static double atan(double a)
參數:
a:the value whose arc tangent is to be returned.
返回:
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

相關用法


注:本文由純淨天空篩選整理自Niraj_Pandey大神的英文原創作品 Java atan() method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。