复杂头文件的pow()函数在复杂头文件中定义。此函数是pow()函数的复杂版本。此函数用于计算基数x的复数幂升到y的幂。
句法:
template
or,
template
or,
template
or,
template
参数:此方法接受两个参数:
- ×:将基数表示为复数。
- y:表示指数为复数值。
返回值:该函数将基数x的复数幂返回到y的幂。
下面的程序说明了C++中的pow()函数:
范例1:-
// c++ program to demonstrate
// example of pow() function.
#include
using namespace std;
// driver program
int main()
{
// initializing the complex: (1.0+2.0i)
complex complexnumber(1.0, 2.0);
// use of pow() function for complex number
cout << "(1.0, 2.0)^2 = "
<< pow(complexnumber, 2)
<< endl;
return 0;
}
输出:
(1.0, 2.0)^2 = (-3,4)
示例2:
// c++ program to demonstrate
// example of pow() function.
#include
using namespace std;
// driver program
int main()
{
// initializing the complex: (2.0+1.0i)
complex complexnumber(2.0, 1.0);
// use of pow() function for complex number
cout << "(2.0, 1.0)^3 = "
<< pow(complexnumber, 3)
<< endl;
return 0;
}
输出:
(2.0, 1.0)^3 = (2,11)
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。