當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。