C ++中的imag()函数

在本文中,我们将讨论imag()C ++函数的工作原理,语法和示例。

什么imag()

imag()函数是C ++ STL中的内置函数,在<complex>头文件中定义。imag()用于查找复数的虚部。

复数是由实数和虚数组合而成的数。实数是除无穷和虚数之外的任何数。

虚数是那些平方为负数的数字。函数返回虚部,虚部是虚部乘以的因子。

语法

Template <class T> T imag(const complex<T>& num);

参数

该函数接受以下参数-

  • num-这是给定的复数。

返回值

此函数返回num的虚数部分。

输入值 

complex<double> img(2.2,3.4);
imag(img);

输出结果 

3.4

示例

#include <bits/stdc++.h>
using namespace std;
int main(){
   //复数=(a + ib)
   complex<double> img(2.2,3.4);
   cout<<"The complex number is: "<<img;
   cout<<"\nThe Imaginary part of the complex number is: "<<imag(img) << endl;
   return 0;
}

输出结果

如果我们运行上面的代码,它将生成以下输出-

The complex number is: (2.2,3.4)
The Imaginary part of the complex number is: 3.4

示例

#include <bits/stdc++.h>
using namespace std;
int main(){
   //复数=(a + ib)
   complex<double> img(32,12);
   cout<<"The complex number is: "<<img;
   cout<<"\nThe Imaginary part of the complex number is: "<<imag(img) << endl;
   return 0;
}

输出结果

如果我们运行上面的代码,它将生成以下输出-

The complex number is: (32,12)
The Imaginary part of the complex number is: 12