#include<iostream>using namespace std;struct complex{ double real,imag; complex(double r=0.0,double i=0.0):real(r),imag(i){}; complex operator+ (const complex & other)const { return complex(real+other.real,imag+other.imag); } complex operator- (const complex &o...