acos() 方法用于返回指定double类型参数的反余弦值。
double acos(double d)
d -- 任何原生数据类型。
返回指定double类型参数的反余弦值。
public class Test{ public static void main(String args[]){ double degrees = 45.0; double radians = Math.toRadians(degrees); System.out.format("pi 的值为 %.4f%n", Math.PI); System.out.format("%.4f 的反余弦值为 %.4f 度 %n", Math.cos(radians), Math.toDegrees(Math.acos(Math.sin(radians)))); } }
编译以上程序,输出结果为:
pi 的值为 3.1416 0.7071 的反余弦值为 45.0000 度
在线实例
字符集 & 工具
最新更新
站点信息
关注我们