C++ Math sin()函数
该函数用于计算给定弧度的正弦值。
语法
假设弧度为 ‘x’。语法如下:
float sin(float x);
float sin(double x);
float sin(long double x);
double sin(integral x);
注意:如果传递的值是整数类型,则将其转换为双精度。
参数
x :以弧度表示的值。
返回值
返回给定弧度角的正弦值,在[-1,1]范围内。
示例1
让我们看一个简单的示例,当x的值为正时。
#include
#include
using namespace std;
int main()
{
double degree=60;
double radian=degree*3.14/180;
cout<<"Sine of an angle is : "<
输出:
Sine of an angle is : 0.86576
在这个示例中,sin()函数在角度等于60度时计算正弦值。
示例2
让我们看一个简单的示例,当x的值是负数时。
#include
#include
using namespace std;
int main()
{
double degree= -50;
double radian=degree*3.14/180;
cout<<"Sine of an angle is : "<
输出:
Sine of an angle is : -0.76576
在他的示例中,当degree的值为负数,即-50时,sin()函数计算角度的正弦值。