static complex complex::complex_add(complex x, complex y) { complex temp; temp.realp = x.realp + y.realp; temp.imagp = x.imagp + y.imagp; return temp; } //complex_add