扫码一下
查看教程更方便
toDegrees() 方法将参数值转换为度数。
double toDegrees(double d)
d - double 数据类型。
此方法返回 double 值。
public class Main { public static void main(String args[]) { double x = 45.0; double y = 30.0; System.out.println( Math.toDegrees(x) ); System.out.println( Math.toDegrees(y) ); } }
上面示例编译运行结果如下
2578.3100780887044
1718.8733853924698