class Complejo { float Real = 0; float Imag = 0; float Angu = 0; Complejo(float R, float I) { this.Real = R; this.Imag = I; } void Suma(Complejo COMP) { Complejo R = new Complejo(0,0); this.Real += COMP.Real; this.Imag += COMP.Imag; } void Imprime() { System.out.println(this.Real + " + " + this.Imag); } }