📜  arg()函数,用于C++中的复数

📅  最后修改于: 2021-05-30 16:25:32             🧑  作者: Mango

复数的arg()函数在复数头文件中定义。此函数用于返回复数z的参数。

句法:

template T arg (const complex& z);

范围:

  • z:代表给定的复数。

返回值:返回复数的参数。

下面的程序说明了上述函数:-

范例1:

// C++ program to demonstrate
// example of arg() function.
  
#include 
using namespace std;
  
int main ()
{
  // defines the complex number: (5.0 + 12.0i)
  complex complexnumber (5.0, 12.0);
  
  // prints the argument of the complex number
  cout << "The argument of " << complexnumber << " is: ";
  cout << arg(complexnumber) << endl;
  
  return 0;
}
输出:
The argument of (5,12) is: 1.17601

范例2:

// C++ program to demonstrate
// example of arg() function
  
#include 
using namespace std;
  
int main ()
{
  // defines the complex number: (4.0+3.0i)
  complex complexnumber (4.0, 3.0);
  
  // prints the argument of the complex number
  cout << "The argument of " << complexnumber << " is: ";
  cout << arg(complexnumber) << endl;
  
  return 0;
}
输出:
The argument of (4,3) is: 0.643501
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”