Java acos() 方法

acos() 方法用于返回指定double类型参数的反余弦值。

语法

  1. double acos(double d)
  2. `

参数

  • d — 任何原生数据类型。

返回值

返回指定double类型参数的反余弦值。

实例

  1. public class Test{
  2. public static void main(String args[]){
  3. double degrees = 45.0;
  4. double radians = Math.toRadians(degrees);
  5. System.out.format("pi 的值为 %.4f%n", Math.PI);
  6. System.out.format("%.4f 的反余弦值为 %.4f 度 %n", Math.cos(radians), Math.toDegrees(Math.acos(Math.sin(radians))));
  7. }
  8. }

编译以上程序,输出结果为:

  1. pi 的值为 3.1416
  2. 0.7071 的反余弦值为 45.0000