complex
类可以表示
并控制几个复数操作。我们来看一下如何表示和控制
显示复数。
如前所述,复数由实部和虚部两部分组成。
显示实部我们使用real()函数,使用imag()函数来显示 给定复数的虚部。在下一个例子中,我们取一个复数 number object, 初始化它,然后显示数字的实部和虚部 分别。//displaying the imaginary part only complex<double> c; cout << imag(c) << endl;
拿一个新的复数对象。
使用'a. + ib'表示法为对象赋值。
使用imag()函数显示复数值的虚部。
#include <iostream> #include <complex> using namespace std; //displays the imaginary part of the complex number void display(complex <double> c){ cout << "The imaginary part of the complex number is: "; cout << imag(c) << endl; } //initializing the complex number complex<double> solve( double real, double img ){ complex<double> cno(real, img); return cno; } int main(){ complex<double> cno = 10.0 + 11i; //displaying the complex number cout << "The complex number is: " << real(cno) << '+' << imag(cno) << 'i' << endl; display(cno); return 0; }
The complex number is: 10+11i The imaginary part of the complex number is: 11
需要注意的是,imag()函数只接受复数作为输入,并且
返回所提供复数的虚部。输出值为
复数对象的模板参数。
对于科学领域广泛的许多不同操作,复杂的
numbers are required. An interface for representing complex numbers is provided by the C++复数类,它是头文件以上是获取给定复数的虚部的C++程序的详细内容。更多信息请关注PHP中文网其他相关文章!