Пример #1
0
Complex Complex::operator-(const Complex &a)
{
	return Complex(this->rel - a.getR(), this->im - a.getI());
}
Пример #2
0
Complex Complex::operator+(const Complex &a)
{
	return Complex(this->rel + a.getR(), this->im + a.getI());
}