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

C++ 库函数 <cmath>

C ++中的acosh()函数返回弧度数的反双曲余弦(反双曲余弦)。

acosh()函数采用单个参数,并以弧度返回该值的反双曲余弦值。

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

[数学] cosh-1x = acosh(x) [c++ 语言]

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

double acosh(double x);
float acosh(float x);
long double acosh(long double x);
double acosh(T x); //为整型

acosh()参数

acosh()函数采用单个强制性参数,该参数大于或等于1。

如果参数小于1,则发生域错误。

acosh()返回值

acosh()函数返回[0,∞]范围内的值。

如果传递给acosh()的参数小于1,则返回NaN(非数字)。

acosh()返回值
参数返回值
x> = 1[0,∞]
x <1N

示例1:acosh()函数在C ++中如何工作?

#include <iostream>
#include <cmath>

#define PI 3.141592654
using namespace std;

int main()
{
	double x = 13.21, result;
	result = acosh(x);

	cout << "acosh(x) = " << result << " radian" << endl;
	cout << "acosh(x) = " << result*180/PI << " degree" << endl;

	return 0;
}

运行该程序时,输出为:

acosh(x) = 3.27269 radian
acosh(x) = 187.511 degree

示例2:具有整数类型的acosh()函数

#include <iostream>
#include <cmath>

#define PI 3.141592654
using namespace std;

int main()
{
	int x = 4;
	double result;

	result = acosh(x);
	cout << "acosh(x) = " << result << " radian" << endl;
	cout << "acosh(x) = " << result*180/PI << " degree" << endl;
	
	return 0;
}

运行该程序时,输出为:

acosh(x) = 2.06344 radian
acosh(x) = 118.226 degree

  C++ 库函数 <cmath>