java.lang.StrictMath.acos()方法範例


java.lang.StrictMath.acos() 方法返回一個值的反餘弦,返回的角度範圍在0.0到pi。如果引數為NaN或它的絕對值大於1,那麼結果為NaN。

宣告

以下是java.lang.StrictMath.acos()方法的宣告

public static double acos(double a)

引數

  • a -- 這是是要返回它的反餘弦值。

返回值

此方法返回引數的反餘弦值。

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.acos()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    double d1 = 0.90 , d2 = 5.00;

    // returns the arc cosine of a value
    double dAbsValue = StrictMath.acos(d1); 
    System.out.println("arc cosine value of " + d1 + " = " + dAbsValue);
        
    // returns NaN if argument is NaN or its absolute value is greater than 1
    dAbsValue = StrictMath.acos(d2); 
    System.out.println("arc cosine value of " + d2 + " = " + dAbsValue);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

cosine value of 0.9 = 0.45102681179626236
cosine value of 5.0 = NaN