Java StrictMath acos()方法

java.lang.StrictMath.acos() 方法返回一个值的反余弦,返回的角度范围在0.0到pi。如果参数为NaN或它的绝对值大于1,那么结果为NaN。

1 语法

public static double acos(double a)

2 参数

a : 这是是要返回它的反余弦值。

3 返回值

此方法返回参数的反余弦值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StrictMath acos()方法
 */
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

 

热门文章

优秀文章