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


C++ cosh()用法及代碼示例


cosh()是C++ STL中的內置函數,它返回以弧度給出的角度的雙曲餘弦。

用法:

cosh(data_type x)

參數:該函數接受一個強製性參數x,該參數指定弧度中的雙曲角。該參數可以是double,float或long double數據類型。


返回值:該函數返回參數的雙曲餘弦值。如果結果的大小太大而無法用返回類型的值表示,則該函數返回inf。

以下示例程序旨在說明上述方法:

示例1:

// CPP program to demonstrate the 
// cosh() function 
#include <bits/stdc++.h> 
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 <bits/stdc++.h> 
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 <bits/stdc++.h> 
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 <bits/stdc++.h> 
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


相關用法


注:本文由純淨天空篩選整理自pawan_asipu大神的英文原創作品 cosh() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。