C 语言库函数 - exp()
C 语言标准库 <math.h> 函数 double exp(double x) 返回 e 的 x 次幂的值
头文件
#include <math.h>
函数原型
下面是 exp() 函数的声明
double exp(double x)
参数
- x : 浮点值
返回值
该函数返回 e 的 x 次幂。
范例
下面的范例演示了 exp() 函数的用法
/** * file: main.c * author: 简单教程(www.twle.cn) * * Copyright © 2015-2065 www.twle.cn. All rights reserved. */ #include <stdio.h> #include <math.h> int main () { double x = 3; printf("e 的 %lf 次幂是 %lf\n", x, exp(x)); printf("e 的 %lf 次幂是 %lf\n", x+1, exp(x+1)); printf("e 的 %lf 次幂是 %lf\n", x+2, exp(x+2)); return(0); }
编译运行范例,输出结果如下
$ gcc main.c && ./a.out e 的 3.000000 次幂是 20.085537 e 的 4.000000 次幂是 54.598150 e 的 5.000000 次幂是 148.413159