编写一个程序,要求: (1)声明一个类complex,定义类complex的两个对象c1和c2,对象c1通过构造 函数直接指定复数的实部和虚部(类私有数据成员为double类型:real和imag)为2.5及3.7,对象c2通过构造函数直接指定复数的实部和虚部为4.2 及6.5; (2)定义友元运算符重载函数,它以c1、c2对象为参数,调用该函数时能返回两个复数对象相加操作; (3)定义成员函数print,调用该函数时,以格式“(real,imag)”输出当前对象的实 部和虚部,例如:对象的实部和虚部分别是4.2和6.5,则调用print函数输出 格式为:(4.2,6.5);
时间: 2024-02-06 09:10:52 浏览: 70
实验一 类和对象实验(一).docx
以下是示例代码:
```cpp
#include <iostream>
class complex {
private:
double real;
double imag;
public:
complex(double r, double i) : real(r), imag(i) {}
friend complex operator+(const complex& c1, const complex& c2) {
return complex(c1.real + c2.real, c1.imag + c2.imag);
}
void print() {
std::cout << "(" << real << ", " << imag << ")";
}
};
int main() {
complex c1(2.5, 3.7);
complex c2(4.2, 6.5);
complex c3 = c1 + c2;
c1.print();
std::cout << " + ";
c2.print();
std::cout << " = ";
c3.print();
std::cout << std::endl;
return 0;
}
```
输出结果为:(2.5, 3.7) + (4.2, 6.5) = (6.7, 10.2)
阅读全文