Also multiplication

This commit is contained in:
Micke Nordin 2016-06-18 20:21:18 +02:00
parent 0f2a7c7536
commit b2b1733fec
2 changed files with 8 additions and 3 deletions

View file

@ -3,8 +3,9 @@
int main() {
cnumber a(-1, 4);
cnumber b(4, -7);
cnumber a(1, -3);
cnumber b(2, 5);
cout << "a = " << a << " b = " << b << " a + b = " << a + b << endl;
cout << "a = " << a << " b = " << b << " a * b = " << a * b << endl;
}

View file

@ -18,10 +18,14 @@ class cnumber {
signi = get_sign(i);
}
cnumber operator+(const cnumber& that) {
cnumber operator+(const cnumber &that) {
cnumber z(that.r + this->r, that.i + this->i);
return z;
}
cnumber operator*(const cnumber &that) {
cnumber z( (that.r * this->r ) - (that.i * this->i) , (that.r * this->i) + (this->r * that.i) );
return z;
}
friend ostream &operator<<( ostream &os, const cnumber &z ) {
os << z.r << (z.signi ? '+' : '\0' ) << z.i << 'i';