Java Math acos() 方法
示例
返回不同数字的反余弦值
System.out.println(Math.acos(0.64));
System.out.println(Math.acos(-0.4));
System.out.println(Math.acos(0));
System.out.println(Math.acos(1));
System.out.println(Math.acos(-1));
System.out.println(Math.acos(2));
定义和用法
The acos()
方法返回一个数字的反余弦值。
提示: acos(-1) 返回 PI 的值。
语法
public static double abs(double number)
参数值
参数 | 描述 |
---|---|
number | 必需。要查找反余弦值的数字,范围为 -1 到 1。如果值在 -1 到 1 之外,则返回 NaN(非数字)。 |
技术细节
返回值 | 一个 double 值,表示一个数字的反余弦值 |
---|
❮ Math 方法