C++ 中的acos() 函数以弧度返回数字(参数)的反余弦值。
该函数在<cmath> 头文件中定义。
[Mathematics] cos-1x = acos(x) [In C++ Programming];
acos() 原型 [从 C++ 11 标准开始]
double acos(double x); float acos(float x); long double acos(long double x); double acos (T x); // For integral type
参数:
acos() 函数采用 [-1, 1] 范围内的单个强制参数。这是因为余弦的值在 1 和 -1 的范围内。
返回:
假设参数在 [-1, 1] 范围内,acos() 函数返回 [0, π] 范围内的值。
如果参数大于 1 或小于 -1,acos() 返回 NaN
,即不是数字。
参数 (x) | 返回值 |
---|---|
x = [-1, 1] | [0, π] 以弧度为单位 |
-1 > x 或 x > 1 | NaN(不是数字) |
示例 1:acos() 如何工作?
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x = 0.0, result;
result = acos(x);
cout << "acos(x) = " << result << " radians" << endl;
// result in degrees
cout << "acos(x) = " << result*180/3.1415 << " degrees" << endl;
return 0;
}
运行程序时,输出将是:
acos(x) = 1.5708 radians acos(x) = 90.0027 degrees
示例 2:acos() 具有整数类型的函数
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int x = -1;
double result;
result = acos(x);
cout << "acos(x) = " << result << " radians" << endl;
// Converting result to degrees
cout << "acos(x) = " << result*180/3.1415 << " degrees";
return 0;
}
运行程序时,输出将是:
acos(x) = 3.14159 radians acos(x) = 180.005 degrees
相关用法
- C++ acos()用法及代码示例
- C++ complex acos()用法及代码示例
- C++ complex acosh()用法及代码示例
- C++ acosh()用法及代码示例
- C++ atexit()用法及代码示例
- C++ any_of()用法及代码示例
- C++ atof()用法及代码示例
- C++ abort()用法及代码示例
- C++ atol()用法及代码示例
- C++ array at()用法及代码示例
- C++ array::fill()、array::swap()用法及代码示例
- C++ atoll()用法及代码示例
- C++ array::size()用法及代码示例
- C++ array::rbegin()、array::rend()用法及代码示例
- C++ atan()用法及代码示例
- C++ complex abs()用法及代码示例
- C++ array::front()、array::back()用法及代码示例
- C++ array::front()用法及代码示例
- C++ array get()用法及代码示例
- C++ complex atanh()用法及代码示例
注:本文由纯净天空筛选整理自 C++ acos()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。