asinh()函数以及C ++中的示例
C++asinh()函数
asinh()函数是cmath标头的库函数,用于查找给定值的面积双曲正弦,它接受数字(x)并返回x的面积双曲正弦。
asinh()函数语法:
asinh(x);
参数:x–是要计算其面积双曲正弦的数字/值。
返回值:double-返回double类型值,它是给定数字/值x的面积双曲正弦值。
示例
Input:
float x = 2.45;
Function call:
asinh(x);
Output:
1.6285C++代码演示asinh()函数示例
//示例
//asinh()功能
#include <iostream>
#include <cmath>
using namespace std;
//main()部分
int main(){
float x;
x = 1.0;
cout<<"asinh("<<x<<"): "<<asinh(x)<<endl;
x = 10.23;
cout<<"asinh("<<x<<"): "<<asinh(x)<<endl;
x = 2.45;
cout<<"asinh("<<x<<"): "<<asinh(x)<<endl;
return 0;
}输出结果
asinh(1): 0.881374 asinh(10.23): 3.02085 asinh(2.45): 1.6285
参考:C++asinh()函数
热门推荐
10 企业国庆问候祝福语简短
11 商业装修开工祝福语简短
12 五一祝福语大全简短最新
13 高考同学留言祝福语简短
14 给母校送花祝福语简短
15 英语寄语生日祝福语简短
16 边防女兵祝福语大全简短
17 祝父母节日祝福语简短
18 妹妹考上军校祝福语简短