Groovy - sqrt()



该方法对参数返回平方根。

语法

double sqrt(double d)

参数

d - 任何基本数据类型。

返回值

该方法对参数返回平方根。

示例

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

class Example { 
   static void main(String[] args) { 
      double x = 11.635; 
      double y = 2.76; 
	  
      System.out.printf("The value of e is %.4f%n", Math.E); 
      System.out.printf("sqrt(%.3f) is %.3f%n", x, Math.sqrt(x)); 
   } 
}

当我们运行上述程序时,我们将获得以下结果 -

The value of e is 2.7183 
sqrt(11.635) is 3.411
groovy_numbers.htm
广告