toRadians() 方法用于将角度转换为弧度。
double toRadians(double d)
d -- 任何原生数据类型。
该方法返回 double 值。
public class Test{ public static void main(String args[]){ double x = 45.0; double y = 30.0; System.out.println( Math.toRadians(x) ); System.out.println( Math.toRadians(y) ); } }
编译以上程序,输出结果为:
0.7853981633974483 0.5235987755982988
在线实例
字符集 & 工具
最新更新
站点信息
关注我们