面向对象程序设计上机练习十(运算符重载)

面向对象程序设计上机练习十(运算符重载)

Time Limit: 1000MS  Memory Limit: 65536KB
Submit  Statistic

Problem Description

定义一个复数类Complex,重载运算符“+”,使之能用于复数的加法运算。参加运算的两个运算量可以都是类对象,也可以其中有一个是整数,顺序任意。例如:c1+c2、i+c1、c1+i均合法。(其中i是整数,c1、c2是复数),编程实现求2个复数之和、整数与复数之和。

Input

输入有三行:第1行是第1个复数c1的实部和虚部,以空格分开。第2行是第2个复数c2的实部和虚部,以空格分开。第3行是1个整数i的值。

Output

输出有三行:
第1行是2个复数c1和c2的和,显示方式:实部+虚部i
第2行是第1个复数c1加i的值,显示方式:实部+虚部i 
第3行是i加第1个复数c1的值,显示方式:实部+虚部i

Example Input

2 3
3 5
10

Example Output

5+8i
12+3i
12+3i
本题的实现和无输入时对复数的操作是一样的,只不过是增加了输入。
#include
#include
#include

using namespace std;

class Complex{
private:
    double real, imag;
public:
    Complex(){real=imag=0;}
    Complex(double a, double b){
        real=a;
        imag=b;
    }
    Complex operator +(Complex &c);
    Complex operator -(Complex &c);
    void set_info(int a, int b){
    	real = a;
    	imag = b;
    }
    void display(){
        if(imag<0)
            cout<real + c.real;
    temp.imag = this->imag + c.imag;
    return temp;
}

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

}

int main(){
    Complex s[3];
    Complex t[3];
    int x, y;
    for(int i = 0; i < 2; i++){
    	 cin>>x>>y;
    	 s[i].set_info(x, y);
    }
    cin>>x;
    s[2].set_info(x, 0);
    t[0] = s[0] + s[1];
    t[1] = s[0] + s[2];
    t[2] = s[2] + s[0];
    for(int i = 0; i < 3; i++)
    	t[i].display();
    return 0;
}


你可能感兴趣的:(c++)