当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ tan()用法及代码示例


C++ 中的tan() 函数返回以弧度给出的角度(参数)的正切。

该函数在<cmath> 头文件中定义。

[Mathematics] tan x = tan(x) [In C++ Programming]

tan() 原型(从 C++ 11 标准开始)

double tan(double x);
float tan(float x);
long double tan(long double x);
double tan (T x); // For integral type

参数:

tan() 函数接受一个以弧度表示的强制参数(可以是正数、负数或 0)。

返回:

tan() 函数返回 [-∞, ∞] 范围内的值。

示例 1:tan() 如何在 C++ 中工作?

#include <iostream>
#include <cmath>

using namespace std;

int main()
{ 
  long double x = 0.99999, result;
  result = tan(x);
  cout << "tan(x) = " << result << endl;
  
  double xDegrees = 60.0;
  // converting degree to radians and using tan() fucntion
  result = tan(xDegrees*3.14159/180);
  cout << "tan(x) = " << result << endl;

  return 0;
}

运行程序时,输出将是:

tan(x) = 1.55737
tan(x) = 1.73205

示例 2:tan() 具有整数类型的函数

#include <iostream>
#include <cmath>
using namespace std;

int main()
{
  long int x = 6;
  double result;

  result = tan(x);
  cout << "tan(x) = " << result;
  
  return 0;
}

运行程序时,输出将是:

tan(x) = -0.291006

相关用法


注:本文由纯净天空筛选整理自 C++ tan()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。