在复杂头文件中定义了用于复数的tan()函数。此函数是tan()函数的复杂版本。此函数用于计算复数z的复数tan。此函数返回复数z的tan。
句法:
tan(z);
范围:
- z:该方法采用代表复数的mandaory参数z 。
返回值:该函数返回复数z的tan()。
下面的程序说明了C++中的tan()函数:
计划1:-
// C++ program to demonstrate
// example of tan() function.
#include
#include
using namespace std;
int main ()
{
complex complexnumber (0.0, 1.0);
// use of tan() function for complex number
cout << "The tan of " << complexnumber << " is "
<< tan(complexnumber) <
输出:
The tan of (0,1) is (0,0.761594)
计划2:-
// C++ program to demonstrate
// example of tan() function.
#include
#include
using namespace std;
int main ()
{
complex complexnumber (1.0, 0.0);
// use of tan() function for complex number
cout << "The tan of " << complexnumber << " is "
<< tan(complexnumber) << endl;
return 0;
}
输出:
The tan of (1,0) is (1.55741,0)
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。