Java acos()方法具有哪些功能呢?
Java acos()方法的功能
Math.acos()
方法的功能:返回指定double
值的反余弦值
Math.acos()
方法的语法
double acos(double d)
Math.acos()
方法的参数
d
-double
数据类型
返回值
- 此方法返回指定
double
值的反余弦值
例
public class testClass{
public static void main(String args[]) {
double d= 45.0;
double r= Math.toRadians(d);
System.out.format("The arccosine of %.4f is %.4f degrees %n", Math.cos(r),
Math.toDegrees(Math.acos(Math.cos(r))));
}
}
/*
运行以上代码,会返回以下信息
The arccosine of 0.7071 is 45.0000 degrees
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。