Java StrictMath asin()方法
java.lang.StrictMath.asin() 方法返回一个值。反正弦返回角度是-pi/2到pi/2的范围内。它包括以下情况:
- 如果参数为NaN或它的绝对值大于1,那么结果为NaN。
- 如果参数是0,那么结果是相同参数符号为零。
1 语法
public static double asin(double a)
2 参数
a :这是要返回其反正弦的值。
3 返回值
此方法返回参数的反正弦。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StrictMath asin()方法
*/
import java.lang.*;
public class StrictMathDemo {
public static void main(String[] args) {
double d1 = 0.90 , d2 = 5.00, d3 = 0;
// returns the arc sine of a value
double dAbsValue = StrictMath.asin(d1);
System.out.println("arc sine value of " + d1 + " = " + dAbsValue);
// returns NaN if argument is NaN or its absolute value is greater than 1
dAbsValue = StrictMath.asin(d2);
System.out.println("arc sine value of " + d2 + " = " + dAbsValue);
// returns zero if the argument is 0
dAbsValue = StrictMath.asin(d3);
System.out.println("arc sine value of " + d3 + " = " + dAbsValue);
}
}
输出结果为:
arc sine value of 0.9 = 1.1197695149986342
arc sine value of 5.0 = NaN
arc sine value of 0.0 = 0.0
热门文章
优秀文章