sinh()函数以及C ++中的示例
C++sinh()
函数
sinh()函数是cmath标头的库函数,用于查找给定值(双曲线角)的双曲正弦,接受数字(x)并返回x的双曲正弦。
sinh()
函数语法:
sinh(x);
参数:x–是用于计算双曲正弦值的数字(双曲天使)。
返回值:double-返回double类型的值,它是双曲角度x的双曲正弦值。
示例
Input: float x = 2.45; Function call: sinh(x); Output: 5.75103
C++代码演示sinh()
函数示例
//示例 //sinh()功能 #include <iostream> #include <cmath> using namespace std; //main()部分 int main(){ float x; x = -10.23; cout<<"sinh("<<x<<"): "<<sinh(x)<<endl; x = 0; cout<<"sinh("<<x<<"): "<<sinh(x)<<endl; x = 2.45; cout<<"sinh("<<x<<"): "<<sinh(x)<<endl; return 0; }
输出结果
sinh(-10.23): -13861.2 sinh(0): 0 sinh(2.45): 5.75103
参考:C++sinh()
函数