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++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。