#include <iostream>
using namespace std;
class Complex
{
private:
int real, imag, jav;
public:
Complex(int r=0, int i=0)
{
real = r;
imag = i;
}
Complex operator+(Complex obj)
{
Complex res;
res.real = real + obj.real;
res.imag = imag + obj.imag;
return res;
}
Complex operator-(Complex obj)
{
Complex res;
res.real = real - obj.real;
res.imag = imag - obj.imag;
return res;
}
Complex operator*(Complex obj)
{
Complex res;
res.real = (real * obj.real) + (-1 * imag * obj.imag) ;
res.imag = (real * obj.imag) + (imag * obj.real );
return res;
}
void printAdd()
{
cout << real << " + i" << imag << endl;
}
void printSub()
{
cout << real << " - i" << imag << endl;
}
void printzarb()
{
cout << real << " +i " << imag << endl;
}
};
int main()
{
Complex c1 = Complex(10, 5);
Complex c2 = Complex(2, 4);
Complex add = c1 + c2;
Complex sub = c1 - c2;
Complex zarb = c1 * c2;
//add.printAdd();
//sub.printSub();
zarb.printzarb();
return 0;}
{"html5":"htmlmixed","css":"css","javascript":"javascript","php":"php","python":"python","ruby":"ruby","lua":"text\/x-lua","bash":"text\/x-sh","go":"go","c":"text\/x-csrc","cpp":"text\/x-c++src","diff":"diff","latex":"stex","sql":"sql","xml":"xml","apl":"apl","asterisk":"asterisk","c_loadrunner":"text\/x-csrc","c_mac":"text\/x-csrc","coffeescript":"text\/x-coffeescript","csharp":"text\/x-csharp","d":"d","ecmascript":"javascript","erlang":"erlang","groovy":"text\/x-groovy","haskell":"text\/x-haskell","haxe":"text\/x-haxe","html4strict":"htmlmixed","java":"text\/x-java","java5":"text\/x-java","jquery":"javascript","mirc":"mirc","mysql":"sql","ocaml":"text\/x-ocaml","pascal":"text\/x-pascal","perl":"perl","perl6":"perl","plsql":"sql","properties":"text\/x-properties","q":"text\/x-q","scala":"scala","scheme":"text\/x-scheme","tcl":"text\/x-tcl","vb":"text\/x-vb","verilog":"text\/x-verilog","yaml":"text\/x-yaml","z80":"text\/x-z80"}