コード例 #1
0
ファイル: Complex.cpp プロジェクト: bull0708/Cpp_Course
void Complex::subtract(Complex c) {
	c.negitive();
	this->add(c);
}