题目内容

写出下列程序的运行结果#include using namespace std;class Complex{public:Complex() { real = 0; imag = 0; }Complex(double r, double i) { real = r; imag = i; }Complex operator+(Complex& c2);void display();private:double real;double imag;};Complex Complex::operator+(Complex & c2){Complex c;c.real = real + c2.real;c.imag = imag + c2.imag;return c;}void Complex::display(){cout << "(" << real << "," << imag << "i)" << endl;}int main(){Complex c1(3, 4), c2(5, -10), c3;c3 = c1 + c2;//运算符+用于复数运算cout << "c1 = "; c1.display();cout << "c2 = "; c2.display();cout << "c1 + c2 = "; c3.display();return 0;}

查看答案
更多问题

( )又称“三才碗”,一式三件,下有托,中有碗,上置盖。

A. 紫砂壶
B. 盖碗
C. 兔毫盏
D. 茶盅

假设当前目录下没有任何文件和目录,执行 ls > a.txt 后,文件a.txt中的内容是()。

A. a.txt
B. 无内容
C. error
D. ls

执行 ls >> a.txt,如果a.txt不存在,则系统会()。

A. 自动创建a.txt文件
B. 报错
C. 不执行任何动作
D. 执行ls,不创建a.txt文件

如果当前目录中不存在a.txt文件,当前系统中没有tom用户,则执行 id tom > a.txt后,a.txt的内容是()。

A. 为空
B. tom
C. id tom
D. root

答案查题题库