如前所述,复数由实部和虚部两部分组成。
显示实部我们使用real()函数,使用imag()函数来显示 给定复数的虚部。在下一个例子中,我们取一个复数 number object, 初始化它,然后显示数字的实部和虚部 分别。//displaying the imaginary part only complex<double> c; cout << imag(c) << endl;
拿一个新的复数对象。
使用'a. + ib'表示法为对象赋值。
使用imag()函数显示复数值的虚部。
立即学习“C++免费学习笔记(深入)”;
#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中文网其它相关文章!
c++怎么学习?c++怎么入门?c++在哪学?c++怎么学才快?不用担心,这里为大家提供了c++速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 //m.sbmmt.com/ All Rights Reserved | php.cn | 湘ICP备2023035733号