C++ Math cos()函数
该函数用于计算以弧度表示的角的余弦值。
语法
考虑一个以弧度表示的角 ‘x’。语法如下:
float cos(float x);
float cos(double x);
float cos(long double x);
double cos(integral x);
注意:如果传入的值是整数类型,则会转换为双精度类型。
参数
x : 以弧度为单位指定的值。
返回值
返回角度范围内的余弦值[-1,1]。
示例1
让我们看一个简单的示例,当x的值为正数时。
#include
#include
using namespace std;
int main()
{
double degree=60;
double d=60*3.14/180;
cout<<"Cosine of an angle is : "<
输出:
Cosine of an angle is : 0.50046
在这个示例中,cos()函数在角度等于60度时计算余弦值。
示例2
让我们看一个简单的示例,当x的值是负数时。
#include
#include
using namespace std;
int main()
{
double degree= -90;
double radian=degree*3.14/180;
cout<<"Cosine of an angle is :"<
输出:
Cosine of an angle is :0.000796327
在这个示例中,cos()函数在角度的值为负数时仍然可以计算出角度的余弦值,因为cos(-x) = cos(x)。