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