C++ tan() 函數
tan() 函數是 cmath 頭文件的庫函數,用於求給定數字(角度)的切線,它接受一個數字(x
) 並返回角度的正切x
弧度。
tan() 函數的語法:
tan(x);
參數: x
– 是要計算其切線的弧度值。
返回值: double
– 它返回雙精度值,即給定角度的切線x
弧度。
例:
Input:
float x = 2.45;
Function call:
tan(x);
Output:
-0.828017
C++代碼演示tan()函數的例子
// C++ code to demonstrate the example of
// tan() function
#include <iostream>
#include <cmath>
using namespace std;
// main() section
int main()
{
float x;
x = -10.23;
cout<<"tan("<<x<<"):"<<tan(x)<<endl;
x = 0;
cout<<"tan("<<x<<"):"<<tan(x)<<endl;
x = 2.45;
cout<<"tan("<<x<<"):"<<tan(x)<<endl;
return 0;
}
輸出
tan(-10.23):-1.04045 tan(0):0 tan(2.45):-0.828017
參考:C++ tan() 函數
相關用法
- C++ complex tan()用法及代碼示例
- C++ complex tanh()用法及代碼示例
- C++ tanh()用法及代碼示例
- C++ tgamma()用法及代碼示例
- C++ tellg()用法及代碼示例
- C++ towupper()用法及代碼示例
- C++ towlower()用法及代碼示例
- C++ type_traits::is_null_pointer用法及代碼示例
- C++ typeinfo::bad_cast用法及代碼示例
- C++ typeinfo::bad_typeid用法及代碼示例
- C++ trunc()用法及代碼示例
- C++ towctrans()用法及代碼示例
- C++ transform_inclusive_scan()用法及代碼示例
- C++ unordered_map cbegin用法及代碼示例
- C++ map lower_bound()用法及代碼示例
- C++ list assign()用法及代碼示例
- C++ std::max()用法及代碼示例
- C++ std::string::push_back()用法及代碼示例
- C++ multimap key_comp()用法及代碼示例
- C++ Deque erase()用法及代碼示例
注:本文由純淨天空篩選整理自 tan() function with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。