Groovy - exp()



该方法返回自变量的自然对数的底数,e

语法

double exp(double d)

参数

d - 任何基本数据类型。

返回值

此方法返回自然对数的底数,e,作为自变量的幂。

示例

以下是此方法使用示例 -

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("exp(%.3f) is %.3f%n", x, Math.exp(x));
   } 
}

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

The value of e is 2.7183 
exp(11.635) is 112983.831
groovy_numbers.htm
广告