声明一个类 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 函数输 E 格式为: (4.2,6.5); (4)编写主程序,计算出复数对象cl 和c2相加结果,并将其结果输出
时间: 2024-02-28 18:53:58 浏览: 104
请查看以下实现:
```c++
#include <iostream>
using namespace std;
class complex {
private:
double real, imag;
public:
complex(double r = 0, double i = 0) : real(r), imag(i) {}
friend complex operator+(const complex& c1, const complex& c2);
void print() const { cout << "(" << real << "," << imag << ")"; }
};
complex operator+(const complex& c1, const complex& c2) {
return complex(c1.real + c2.real, c1.imag + c2.imag);
}
int main() {
complex c1(2.5, 3.7), c2(4.2, 6.5);
complex result = c1 + c2;
result.print();
return 0;
}
```
输出结果为:(6.7,10.2)
相关问题
编写一个程序,要求(1)声明一个类complex,定义类complex的两个对象c1和c2,对象c1通过构造函数直接定义指定复数的实部和虚部(类私有数据为double类型:real和imag)为2.5及3.7,对象c2通过构造函数直接指定复数的实部和虚部为4.2及6.5
好的,我来帮您编写这个程序。以下是代码:
```c++
#include <iostream>
using namespace std;
class complex {
private:
double real, imag;
public:
complex(double r, double i) {
real = r;
imag = i;
}
void show() {
cout << real << " + " << imag << "i" << endl;
}
};
int main() {
complex c1(2.5, 3.7);
complex c2(4.2, 6.5);
cout << "c1 = ";
c1.show();
cout << "c2 = ";
c2.show();
return 0;
}
```
这个程序定义了一个complex类,其中包括实部和虚部两个私有数据成员。构造函数用来初始化这两个成员。show()函数用来输出复数对象的实部和虚部。
在main()函数中,我们定义了两个complex类的对象c1和c2,并分别传入构造函数初始化其实部和虚部。最后调用show()函数输出复数对象的实部和虚部。
运行程序,输出结果如下:
```
c1 = 2.5 + 3.7i
c2 = 4.2 + 6.5i
```
希望这个程序能够帮到您。如果还有其他问题,可以继续问我哦。
c++编写一个程序,要求: (1)声明一个类complex,定义类complex的两个对象c1和c2,对象c1通过构造函数直接指定复数的实部和虚部(类的私有数据成员为double类型:real和imag)为2.5及3.7,对象c2通过构造函数直接指定复数的实部和虚部为4.2和6.5; (2)定义友元运算符重载函数,它以c1、c2对象为参数,调用该函数时能返回两个复数对象相加操作; (3)定义成员函数print,调用该函数时,它以格式(real,image)输出当前对象的实部和虚部; (4)编写主程序,计算出复数对象c1和c2相加结果,并将其结果输出
以下是实现该程序的代码:
```
#include<iostream>
using namespace std;
class complex {
private:
double real, imag;
public:
complex(double r, double i) {
real = r;
imag = i;
}
friend complex operator+(complex c1, complex c2) {
complex result(0, 0);
result.real = c1.real + c2.real;
result.imag = c1.imag + c2.imag;
return result;
}
void print() {
cout << "(" << real << ", " << imag << ")" << endl;
}
};
int main() {
complex c1(2.5, 3.7);
complex c2(4.2, 6.5);
complex result = c1 + c2;
result.print();
return 0;
}
```
输出结果为:(6.7, 10.2)
阅读全文