cosh()函数用于求出给定值的双曲余弦值。
cosh()函数 语法
double cosh(double x);
参数x为要求出双曲余弦值的双精度浮点数。
cosh()函数返回给定值的双曲余弦值。
cosh()函数 示例
本示例实现从键盘上输入任意一个双精度实数,使用cosh函数求出输入数值的双曲余弦值,并在屏幕中显示出其结果。其具体代码如下所示:
#include<stdio.h>
#include<math.h>
main()
{
double x;/*定义变量x为双精度实数*/
printf("please input a number: ");/*双引号内普通字符原样输出并回车*/
scanf("%lf",&x);/*从键盘中输入数值并赋值给x*/
printf("The hyperboic cosine of%lf is%lf ",x,cosh(x));/*调用cosh函数求出双曲余弦值*/
}
运行结果如图所示。