第九周1

//【任務1】接第8周任務1,定義Complex類中的<<和>>運算符的重載,實現輸入和輸出,改造原程序中對運算結果顯示方式,使程序讀起來更自然。

#include <iostream>

using namespace std;

class Complex
{
public:
	Complex(){real = 0; imag = 0;}
	Complex(double r){real = r;imag = 0;}//類型轉換函數
	
	Complex(double r,double i){real = r; imag = i;}

	friend ostream& operator << (ostream &,Complex &);
	friend istream& operator >> (istream &,Complex &);

	friend Complex operator+ (Complex c1,Complex c2);
	friend Complex operator- (Complex c1, Complex c2);
	friend Complex operator- (Complex &c);
	friend Complex operator* (Complex c1, Complex c2);
	friend Complex operator/ (Complex c1, Complex c2);
private:
	double real;
	double imag;
};
//下面定義成員函數
ostream& operator << (ostream &ouput,Complex &c)
{
	ouput << "(" << c.real;
	if(c.imag >= 0)ouput << "+";
	ouput << c.imag << "i)" << endl;
	return ouput;
}

istream& operator >> (istream &input, Complex &c)
{
	char c1;
	cout << "input real part and imaginary part of complex number:";
	input >> c.real >> c.imag >> c1;
	return input;
}

Complex operator + (Complex c1, Complex c2)
{return Complex(c1.real + c2.real, c1.imag + c2.imag);}

Complex operator - (Complex c1, Complex c2)
{return Complex(c1.real - c2.real, c1.imag - c2.imag);}

Complex operator - (Complex &c)
{ return Complex(-c.real, -c.imag);}

Complex operator * (Complex c1, Complex c2)
{return Complex(c1.real * c2.real - c1.imag * c2.imag, c1.imag * c2.real + c1.real * c2.imag);}

Complex operator / (Complex c1, Complex c2)
{return Complex((c1.real * c2.real + c1.imag * c2.imag) / (c2.real * c2.real + c2.imag * c2.imag), (c1.imag * c2.real - c1.real * c2.imag) / (c2.real * c2.real + c2.imag * c2.imag));}

int main()
{
	double d = 2.5;
	Complex c1, c2, c3,c4;
	cin >> c1;
	cout << "請再輸入一個複數:" << endl;
	cin >> c2;

	cout << "c1 = " << c1;
	cout << "c2 = " << c2;

	c3 = c1 + c2;
	cout << "c1 + c2 = " << c3;

	c3 = c1 + d;
	cout << "c1 + " << d << "= " << c3;

	c3 = Complex(d) + c1;
	cout << d << " + c1" << "= " << c3;

	c3 = c1 - c2;
	cout << "c1 - c2 = " << c3;

	c3 = c1 - d;
	cout << "c1 - " << d << "= " << c3;

	c3 = d - c1;
	cout << d << " - c1" << "= " << c3;

	c3 = c1 * c2;
	cout << "c1 * c2 = " << c3;

	c3 = c1 * d;
	cout << "c1 * " << d << "= " << c3;

    c3 = d * c1;
	cout << d << " * c1" << "= " << c3;

	c3 = c1 / c2;
	cout << "c1 / c2 = " << c3;

	c3 = c1 / d;
	cout << "c1 / " << d << "= " << c3;

	c3 = d / c1;
	cout << d << " / c1" << "= " << c3;

	c3 = - c1;
	cout << " -c1= " << c3;

	system("pause");
	return 0;
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章