C标准库之数学函数exp
功能:求双精度数的指数函数值函数原型:double exp(double x);
要求:
函数需要的头文件
exp<math.h>
参数:
参数说明
x需求指数的双精度数
返回值:精度数的指数函数值
举例:#include <stdio.h>
#include <float.h>
#include <ctype.h>
#include <math.h>
int main()
{
double m = 4,n; //为变量赋初值
n = exp(m); //求m的双精度数的指数函数值
printf("%f\n",n);
}
页:
[1]