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++ complex tan()用法及代碼示例
- C++ complex tanh()用法及代碼示例
- C++ tanh()用法及代碼示例
- C++ type_info name用法及代碼示例
- C++ tellg()用法及代碼示例
- C++ type_info before用法及代碼示例
- C++ tgamma()用法及代碼示例
- C++ towupper()用法及代碼示例
- C++ towlower()用法及代碼示例
- C++ trunc()用法及代碼示例
- C++ time()用法及代碼示例
- C++ typeinfo::bad_cast用法及代碼示例
- C++ typeinfo::bad_typeid用法及代碼示例
- C++ tmpnam()用法及代碼示例
- C++ type_traits::is_null_pointer用法及代碼示例
- C++ tmpfile()用法及代碼示例
- C++ towctrans()用法及代碼示例
- C++ toupper()用法及代碼示例
- C++ transform_inclusive_scan()用法及代碼示例
- C++ tolower()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ tan()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。