此函数以弧度计算数字的反余弦值。
acos(x) = cos-1x
用法
假设一个数字是 x。语法是:
float acos(float x);
double acos(double x);
long double acos(long double x);
double acos(integral x);
注意:如果传递的值是整数类型,则将其强制转换为 double。
参数
x:要计算其反余弦值的值。它应该在[-1,1]范围内。
返回值
参数 | 返回值 |
---|---|
-1≤x≤1 | (0,∏) |
x1 | 不是数字 |
例子1
我们来看一个简单的例子,当 x 的值大于 1 时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float degree=90;
float x=degree*3.14/180;
std::cout << "Value of cosine is:" <<cos(x)<< std::endl;
cout<<"Inverse of cosine is:"<<acos(x);
return 0;
}
输出:
Value of cosine is:0.000796274 Inverse of cosine is:nan
在本例中,acos() 函数计算 x 大于 1 时数字的反余弦值。
例子2
让我们看一个简单的例子,当 x 的值等于 0 时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float degree=0;
float x=degree*3.14/180;
std::cout << "Value of cosine is:" <<cos(x)<< std::endl;
cout<<"Inverse of cosine is:"<<acos(x);
return 0;
}
输出:
Value of cosine is:1 Inverse of cosine is:1.5708
在本例中,acos() 函数计算当 x 的值等于 0 时数字的反余弦值。
例子3
让我们看看 x 小于 -1 时的简单示例。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float degree= -60;
float x=degree*3.14/180;
std::cout << "Value of cosine is:" <<cos(x)<< std::endl;
cout<<"Inverse of cosine is:"<<acos(x);
return 0;
}
输出:
Value of cosine is:0.50046 Inverse of cosine is:nan
在本例中,当 x 的值小于 -1 时,acos() 函数计算一个数的反余弦值。
相关用法
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math atan()用法及代码示例
- C++ Math asin()用法及代码示例
- C++ Math atan2()用法及代码示例
- C++ Math abs()用法及代码示例
- C++ Math atanh()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math acos()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。