当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 cosh()用法及代码示例



描述

C库函数double cosh(double x)返回双曲余弦x

声明

以下是 cosh() 函数的声明。

double cosh(double x)

参数

  • x─ 这是浮点值。

返回值

此函数返回 x 的双曲余弦值。

示例

下面的例子展示了 cosh() 函数的用法。

#include <stdio.h>
#include <math.h>

int main () {
   double x;

   x = 0.5;
   printf("The hyperbolic cosine of %lf is %lf\n", x, cosh(x));

   x = 1.0;
   printf("The hyperbolic cosine of %lf is %lf\n", x, cosh(x));

   x = 1.5;
   printf("The hyperbolic cosine of %lf is %lf\n", x, cosh(x));

   return(0);
}

让我们编译并运行上面的程序以产生以下结果——

The hyperbolic cosine of 0.500000 is 1.127626
The hyperbolic cosine of 1.000000 is 1.543081
The hyperbolic cosine of 1.500000 is 2.352410

相关用法


注:本文由纯净天空筛选整理自 C library function - cosh()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。