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