當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ complex abs()用法及代碼示例


在複數頭文件中定義了用於複數的abs()函數。此函數用於返回複數z的絕對值。

用法:

template<class T> T abs (const complex<T>& z);

參數:


  • z:它代表給定的複數。

返回:它返回複數的絕對值。

以下示例程序旨在說明上述函數:-

示例1:

// C++ program to demonstrate 
// example of abs() function. 
   
#include <bits/stdc++.h> 
using namespace std; 
   
// driver function 
int main () 
{ 
  // defines the complex number:(5.0+12.0i) 
  complex<double> 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 <bits/stdc++.h> 
using namespace std; 
  
// driver function 
int main () 
{ 
  // defines the complex number:(4.0+3.0i) 
  complex<double> 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


相關用法


注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 abs() function for complex number in c++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。