小楼寂寞新雨月 发表于 2014-9-14 10:03:41

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]
查看完整版本: C标准库之数学函数exp