exp() 方法用于返回自然数底数e的参数次方。
该方法有以下几种语法格式:
double exp(double d)
d -- 任何原生数据类型。
返回自然数底数e的参数次方。
public class Test{ public static void main(String args[]){ double x = 11.635; double y = 2.76; System.out.printf("e 的值为 %.4f%n", Math.E); System.out.printf("exp(%.3f) 为 %.3f%n", x, Math.exp(x)); } }
编译以上程序,输出结果为:
e 的值为 2.7183 exp(11.635) 为 112983.831
在线实例
字符集 & 工具
最新更新
站点信息
关注我们