當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。