Java sin()方法具有哪些功能呢?
Java sin()方法的功能
Math.sin()
方法返回指定double
值的正弦值
sin()方法的语法
double sin(double d)
参数
d
-double
数据类型
返回值
- 此方法返回
double
参数值的正弦值
例
public class testClass{
public static void main(String args[]) {
double d= 88;
double radians = Math.toRadians(d);
System.out.format("pi is %.4f%n", Math.PI);
System.out.format("The sine of %.1f degrees is %.4f%n", d, Math.sin(radians));
}
}
/*
以上代码运行后,将输出以下信息
pi is 3.1416
The sine of 88.0 degrees is 0.9994
*/
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。