实例要求 ) v2 x4 d; t0 r& i% M
实现⼀个复数类 Complex 。 Complex 类包括两个 double 类型的成员 real 和 image ,分别表示复数的实部和虚部。对 Complex 类,重载其流提取、流插⼊运算符,以及加减乘除四则运算运算符。/ ?% B* i* h% \9 c0 W% S! b
重载流提取运算符 >> ,使之可以读⼊以下格式的输⼊(两个数值之间使⽤空⽩分隔),将第⼀个数值存为复数的实部,将第⼆个数值存为复数的虚部:) H. [8 Z, |; [: ^
<p>1</p><p>2</p><p>-1.1 2.0</p><p>+0 -4.5</p> 重载流插⼊运算符 << ,使之可以将复数输出为如下的格式⸺实部如果是⾮负数,则不输出符号位;输出时要包含半⻆左右⼩括号:* m/ ?! i. V+ N& v6 K/ u) m! t3 ?
<p>1</p><p>2</p><p>(-1.1+2.0i)</p><p> (0-4.5i)</p> 每次输⼊两个复数,每个复数均包括由空格分隔的两个浮点数,输⼊第⼀个复数后,键⼊回⻋,然后继续输⼊第⼆个复数。( f7 U% r) ]# a9 z1 @
输出两个复数,每个复数占⼀⾏;复数是由⼩括号包围的形如 (a+bi) 的格式。注意不能输出全⻆括号。: ]$ e# G) O5 g( C0 I9 I5 A' m* h
样例输⼊
3 p% I$ x% u& ?; S1 I+ F0 V/ [7 R 1
* x# q4 U- C3 y% U 20 o' y: g0 ~' m( Y! N& m- \
-1.1 2.0
; V I5 [# }% u5 T 0 -4.5; ?7 W4 [; g x- H# {- t0 E( s
样例输出 6 P$ B5 W4 F& z7 t& D& D h0 X
1& A4 G0 N5 b" L+ D
21 X2 ?# ~. b& I8 P0 M) j
3
$ E! ~8 u$ e2 I! s/ X- X) K" u 4
( }' o! g/ i, U3 p* @; q 5
4 D$ O% i& J; v* j (-1.1+2i) (0-4.5i)% F* J9 T& e6 K( B! g7 j; Q
(-1.1-2.5i). ]) u) j& D4 `2 v) ~. a! W
(-1.1+6.5i)
' P( F6 L3 A: O e: p% H (9+4.95i)
+ I, M1 S9 V/ I$ O! @7 p (-0.444444-0.244444i)" ~, o9 }0 J9 M$ u
提示
8 X. J7 T" L* w5 M6 h5 X5 N 需要注意,复数的四则运算定义如下所示:: j# ]/ w2 o$ ~/ y
加法法则: ( a + b i ) + ( c + d i ) = ( a + c ) + ( b + d ) i (a + bi) + (c + di) = (a + c) + (b + d)i (a+bi)+(c+di)=(a+c)+(b+d)i 减法法则: ( a + b i ) − ( c + d i ) = ( a − c ) + ( b − d ) i (a + bi) − (c + di) = (a − c) + (b − d)i (a+bi)−(c+di)=(a−c)+(b−d)i 乘法法则: ( a + b i ) × ( c + d i ) = ( a c − b d ) + ( b c + a d ) i (a + bi) × (c + di) = (ac − bd) + (bc + ad)i (a+bi)×(c+di)=(ac−bd)+(bc+ad)i 除法法则: ( a + b i ) ÷ ( c + d i ) = [ ( a c + b d ) / ( c 2 + d 2 ) ] + [ ( b c − a d ) / ( c 2 + d 2 ) ] i (a + bi) ÷ (c + di) = [(ac + bd)/(c^2 + d^2 )] + [(bc − ad)/(c^2 + d^2)]i (a+bi)÷(c+di)=[(ac+bd)/(c2+d2)]+[(bc−ad)/(c2+d2)]i
) a Q! g( V, h# F 两个流操作运算符必须重载为 Complex 类的友元函数,此外,在输出的时候,你需要判断复数的虚部是否⾮负⸺例如输⼊ 3 1.0 ,那么输出应该为 3+1.0i 。这⾥向⼤家提供⼀种可能的处理⽅法:使⽤ ostream 提供的 setf() 函数 ⸺它可以设置数值输出的时候是否携带标志位。例如,对于以下代码:8 v3 Q5 O+ E2 _1 D6 `: Z/ v2 M0 H) t# u
ostream os;
os.setf(std::ios::showpos);
os << 12; 输出内容会是 +12 。
1 n6 |% V+ E+ {: y ⽽如果想要取消前⾯的正号输出的话,你可以再执⾏:5 M0 u6 B7 d0 {- ]8 C2 X
os.unsetf(std::ios::showpos); 即可恢复默认的设置(不输出额外的正号)
# E3 @( ~: r( f" X8 ` 代码实现 # W1 u0 s* E7 U
#include <iostream>
using namespace std;
const double EPISON = 1e-7;
class Complex
{
private:
double real;
double image;
public:
Complex(const Complex& complex) :real{ complex.real }, image{ complex.image } {
}
Complex(double Real=0, double Image=0) :real{ Real }, image{ Image } {
}
//TODO
Complex operator+(const Complex c) {
return Complex(this->real + c.real, this->image + c.image);
}
Complex operator-(const Complex c) {
return Complex(this->real - c.real, this->image - c.image);
}
Complex operator*(const Complex c) {
double _real = this->real * c.real - this->image * c.image;
double _image = this->image * c.real + this->real * c.image;
return Complex(_real, _image);
}
Complex operator/(const Complex c) {
double _real = (this->real * c.real + this->image * c.image) / (c.real * c.real + c.image * c.image);
double _image = (this->image * c.real - this->real * c.image) / (c.real * c.real + c.image * c.image);
return Complex(_real, _image);
}
friend istream &operator>>(istream &in, Complex &c);
friend ostream &operator<<(ostream &out, const Complex &c);
};
//重载>>
istream &operator>>(istream &in, Complex &c) {
in >> c.real >> c.image;
return in;
}
//重载<<
ostream &operator<<(ostream &out, const Complex &c) {
out << "(";
//判断实部是否为正数或0
if (c.real >= EPISON || (c.real < EPISON && c.real > -EPISON)) out.unsetf(std::ios::showpos);
out << c.real;
out.setf(std::ios::showpos);
out << c.image;
out << "i)";
return out;
}
int main() {
Complex z1, z2;
cin >> z1;
cin >> z2;
cout << z1 << " " << z2 << endl;
cout << z1 + z2 << endl;
cout << z1 - z2 << endl;
cout << z1*z2 << endl;
cout << z1 / z2 << endl;
return 0;
}
/ y# O3 Z) T8 B2 E) [+ I* B; l