Java asin()方法拥有哪些功能呢?
Java asin()方法的功能
Math.asin()
方法的功能:用于返回指定double
值的反正弦值
asin()方法的语法
double asin(double d)
参数说明
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 arcsine of %.4f is %.4f degrees %n", Math.sin(r),
Math.toDegrees(Math.asin(Math.sin(r))));
}
}
public static void main(String args[]) {
double d= 45.0;
double r= Math.toRadians(d);
System.out.format("The arcsine of %.4f is %.4f degrees %n", Math.sin(r),
Math.toDegrees(Math.asin(Math.sin(r))));
}
}
/*
以上代码运行后,将输出以下信息
The arcsine of 0.7071 is 45.0000 degrees
*/
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。