Groovy - 数字 toDegrees()



此方法将参数值转换为角度。

语法

double toDegrees(double d)

参数

d - 一个双精度数据类型。

返回值

此方法返回一个双精度值。

示例

以下是使用此方法的一个示例 -

class Example { 
   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
groovy_numbers.htm
广告