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


Java StrictMath acos()用法及代碼示例


java.lang.StrictMath.acos()是一個內置方法,該方法返回給定參數和角度的餘弦值。返回的角度在0.0到pi之間的範圍內。
注意:如果自變量的絕對值大於1或自變量本身是NaN,則結果也是NaN。

用法:

public static double acos(double num)

參數:該方法接受一個雙精度類型的參數num,表示要返回其餘弦值的弧。


返回值:該方法返回參數的反餘弦值。

例子:

Input: num = 0.45 
Output: 1.1040309877476002

Input: num = 8.9
Output: NAN

下麵的程序演示了java.lang.StrictMath.acos()方法:
示例1:對於正數

// Java program to illustrate the 
// java.lang.StrictMath.acos() 
import java.lang.*; 
  
public class Geeks { 
  
    public static void main(String[] args) 
    { 
  
        double num1 = 0.65, num2 = 6.30; 
  
        // It returns the arc cosine of a value 
        double acosValue = StrictMath.acos(num1); 
        System.out.println("The arc cosine value of "+ 
                             num1 + " = " + acosValue); 
  
        acosValue = StrictMath.acos(num2); 
        System.out.println("arc cosine value of "+ 
                             num2 + " = " + acosValue); 
    } 
}
輸出:
The arc cosine value of 0.65 = 0.863211890069541
arc cosine value of 6.3 = NaN

示例2:為負數。

// Java program to illustrate the 
// java.lang.StrictMath.acos() 
import java.lang.*; 
  
public class Geeks { 
  
    public static void main(String[] args) 
    { 
  
        double num1 = -0.65, num2 = -6.30; 
  
        // It returns the arc cosine of a value 
        double acosValue = StrictMath.acos(num1); 
        System.out.println("The arc cosine value of "+ 
                             num1 + " = " + acosValue); 
  
        acosValue = StrictMath.acos(num2); 
        System.out.println("arc cosine value of "+ 
                             num2 + " = " + acosValue); 
    } 
}
輸出:
The arc cosine value of -0.65 = 2.278380763520252
arc cosine value of -6.3 = NaN


相關用法


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