C++ cosh() 函数使用方法及示例

C++ 库函数 <cmath>

C ++中的cosh()函数返回以弧度表示的角度的双曲余弦值。

该函数在<cmath>头文件中定义。

[数学] cosh x = cosh(x) [C++ 语言]

cosh()原型[从C ++ 11标准开始]

double cosh(double x);
float cosh(float x);
long double cosh(long double x);
double cosh(T x); // For integral type.

所述COSH()函数以弧度单个参数,并返回该角度的双曲余弦double,float或long double类型。

x的双曲余弦由下式给出:

C ++ cosh()函数

cosh()参数

cosh()函数采用一个强制性参数,以弧度表示双曲角。

cosh()返回值

cosh()函数返回参数的双曲余弦值。

如果结果的大小太大而无法用返回类型的值表示,则该函数将返回带有正确符号的HUGE_VAL,并且会发生溢出范围错误。

示例1:cosh()函数如何工作?

#include <iostream>
#include <cmath>
using namespace std;
int main()
{
    double x = 4.55, result;

    result = cosh(x);
    cout << "cosh(x) = " << result << endl;

    double xDegrees = 90;
    x = xDegrees * 3.14159/180;

    result = cosh(x);
    cout << "cosh(x) = " << result << endl;

    return 0;
}

运行该程序时,输出为:

cosh(x) = 47.3215
cosh(x) = 2.50918

示例2:带有整数类型的cosh()函数

#include <iostream>
#include <cmath>
using namespace std;
int main()
{
    int x = -3;
    double result;

    result = cosh(x);
    cout << "cosh(x) = " << result << endl;

    return 0;
}

运行该程序时,输出为:

cosh(x) = 10.0179

C++ 库函数 <cmath>