Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

http://www.sc.ehu.es/sbweb/fisica/cursoJava/numerico/complejo/complejo.

htm

numero_complejo operator/(numero_complejo ob1)


{
double aux;
numero_complejo aux2;
aux=ob1.real*ob1.real+ob1.imag*ob1.imag;
aux2.real=(real*ob1.real+imag*ob1.imag)/aux;
aux2.imag=(imag*ob1.real-real*ob1.imag)/aux;
return aux2;
}

You might also like