📅  最后修改于: 2023-12-03 14:39:51.146000             🧑  作者: Mango
在编写 C++ 程序时,难免会用到数学函数。C++ 11 引入了 STL 中的 math.h 头文件,其中有一个常用的函数是 math.cos(),用于计算一个角度的余弦值。
math.cos() 函数用于计算一个角度的余弦值。
double cos(double angle);
其中,angle 代表弧度制下的角度,返回值为这个角度的余弦值。
math.cos() 函数需要引入 math.h 头文件。
#include <math.h>
#include <iostream>
#include <math.h>
using namespace std;
int main() {
double x = 0.5236; // 30° 角度的弧度制表示
double result = cos(x);
cout << "The cosine of " << x << " is " << result << endl;
return 0;
}
输出结果:
The cosine of 0.5236 is 0.866025
math.cos() 函数非常方便,在计算三角函数时经常使用,特别是在涉及到向量、物理和工程学时经常用到。当然,我们需要注意输入参数和结果类型,以及可能的精度误差。