📜  C++ STL中的cosh()函数

📅  最后修改于: 2021-05-30 14:43:23             🧑  作者: Mango

cosh()是C++ STL中的内置函数,它返回以弧度给出的角度的双曲余弦值。

句法 :

cosh(data_type x)

参数:该函数接受一个强制性参数x ,该参数以弧度指定双曲线角。该参数可以是double,float或long double数据类型。

返回值:该函数返回参数的双曲余弦值。如果结果的大小太大而无法用返回类型的值表示,则该函数返回inf

下面的程序说明了上述方法:

程序1:

// CPP program to demonstrate the
// cosh() function
#include 
using namespace std;
  
int main()
{
    double x = 4.1, result;
  
    result = cosh(x);
    cout << "cosh(4.1) = " << result << endl;
  
    // x in Degrees
    double xDegrees = 90;
    x = xDegrees * 3.14159 / 180;
  
    result = cosh(x);
    cout << "cosh(90 degrees) = " << result << endl;
  
    return 0;
}
输出:
cosh(4.1) = 30.1784
cosh(90 degrees) = 2.50918

程式2:

// CPP program to demonstrate the
// cosh() function
#include 
using namespace std;
  
int main()
{
    int x = -4;
    double result;
  
    result = cosh(x);
    cout << "cosh(-4) = " << result << endl;
  
    // x in Degrees
    double xDegrees = 90;
    x = xDegrees * 3.14159 / 180;
  
    result = cosh(x);
    cout << "cosh(90 degrees) = " << result << endl;
  
    return 0;
}
输出:
cosh(-4) = 27.3082
cosh(90 degrees) = 1.54308

错误和异常:当将字符串或字符作为参数传递时,该函数返回任何匹配函数来调用错误。

程序3:

// CPP program to demonstrate the 
// cosh() function when string passed
#include 
using namespace std;
  
int main()
{
    string x = "gfg";
    double result;
  
    result = cosh(x);
    cout << "cosh("gfg") = " << result << endl;
  
    return 0;
}

输出:

prog.cpp:14:20: error: no matching function for call to 'cosh(std::__cxx11::string&)'
result = cosh(x);

程序4:当参数太大时。

// CPP program to demonstrate the cosh()
// function
#include 
using namespace std;
  
int main()
{
    double x = 3000.0, result;
  
    result = cosh(x);
    cout << "cosh(3000.0) = " << result << endl;
  
    return 0;
}
输出:
cosh(3000.0) = inf
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”