该函数用于计算以弧度给出的角度的正弦值。
用法
考虑弧度 'x'。语法是:
float sin(float x);
float sin(double x);
float sin(long double x);
double sin(integral x);
注意:如果传递的值是整数类型,则将其强制转换为 double。
参数
x:以弧度表示的值。
返回值
它返回范围 [-1,1] 内以弧度给出的角度的正弦值。
例子1
当 x 的值为正时,让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double degree=60;
double radian=degree*3.14/180;
cout<<"Sine of an angle is:"<<sin(radian);
return 0;
}
输出:
Sine of an angle is:0.86576
在本例中,sin() 函数计算角度等于 60 时的正弦值。
例子2
当 x 的值为负时,让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double degree= -50;
double radian=degree*3.14/180;
cout<<"Sine of an angle is:"<<sin(radian);
return 0;
}
输出:
Sine of an angle is:-0.76576
在他的示例中,sin() 函数在度数为负值(即 -50)时查找角度的正弦值。
相关用法
- C++ Math sinh()用法及代码示例
- C++ Math signbit()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math scalbln()用法及代码示例
- C++ Math sqrt()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math cosh()用法及代码示例
- C++ Math fma()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math sin()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。