
complex类可以表示
并控制几个复数操作。我们来看一下如何表示和控制
显示复数。
如前所述,复数由实部和虚部两部分组成。
显示实部我们使用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++复数类,它是头文件<complex>的一部分。所有复数运算, 包括加法、减法、乘法、共轭、范数等等, 通过复数类支持。可以使用复数类轻松创建复数 传统数值,正如我们在本文中刚刚讨论的。保持这些数值的重要性 请注意,在展示复数时,实部和虚部的<html代码> number must both be taken into consideration. Otherwise, several issues could arise. The 程序员必须确保在<real()>和</real()>之间不犯错误 imag()函数或其他情况下,值将被反转。以上就是获取给定复数的虚部的C++程序的详细内容,更多请关注php中文网其它相关文章!
c++怎么学习?c++怎么入门?c++在哪学?c++怎么学才快?不用担心,这里为大家提供了c++速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号