C ++ STL中的acos()函数

acos()函数返回以弧度表示的角度的反余弦值。它是C ++ STL中的内置函数。

acos()函数的语法如下。

acos(var)

从语法可以看出,该函数acos()接受数据类型为float,double或long double的参数var。此参数的值应介于-1和1之间。它返回var的反余弦值,范围是-pi到pi。

acos()给出了用C ++演示的程序,如下所示。

示例

#include <iostream>
#include <cmath>
using namespace std;
int main() {
   double d = 0.75, ans;
   ans = acos(d);
   cout << "acos("<< d <<") = " << ans << endl;
   return 0;
}

输出结果

acos(0.75) = 0.722734

在上面的程序中,首先将变量d初始化。然后使用找出d的反余弦acos()并将其存储在ans中。最后,显示ans的值。下面的代码片段对此进行了演示。

double d = 0.75, ans;
ans = acos(d);
cout << "acos("<< d <<") = " << ans << endl;

使用该acos()方法获得的结果可以转换为度数并显示。演示此的程序如下。

示例

#include <iostream>
#include <cmath>
using namespace std;
int main() {
   double d = 0.75, ans;
   ans = acos(d);
   ans = ans*180/3.14159;
   cout << "acos("<< d <<") = " << ans << endl;
   return 0;
}

输出结果

acos(0.75) = 41.4097

在上述程序中,使用可获得反余弦值acos()。然后将此值转换为度。最后,显示输出。下面的代码片段对此进行了演示。

double d = 0.75, ans;
ans = acos(d);
ans = ans*180/3.14159;
cout << "acos("<< d <<") = " << ans << endl;