在复数头文件中定义了复数的abs()函数。此函数用于返回复数z的绝对值。
句法:
template T abs (const complex& z);
范围:
- z:代表给定的复数。
返回值:返回复数的绝对值。
下面的程序说明了上述函数:-
范例1:-
// C++ program to demonstrate
// example of abs() function.
#include
using namespace std;
// driver function
int main ()
{
// defines the complex number: (5.0+12.0i)
complex complexnumber (5.0, 12.0);
// prints the absolute value of the complex number
cout << "The absolute value of " << complexnumber << " is: ";
cout << abs(complexnumber) << endl;
return 0;
}
输出:
The absolute value of (5,12) is: 13
示例2:
// C++ program to demonstrate
// example of abs() function.
#include
using namespace std;
// driver function
int main ()
{
// defines the complex number: (4.0+3.0i)
complex complexnumber (4.0, 3.0);
// prints the absolute value of the complex number
cout << "The absolute value of " << complexnumber << " is: ";
cout << abs(complexnumber) << endl;
return 0;
}
输出:
The absolute value of (4,3) is: 5
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。