#include #include "complex.h" using namespace std; int main() { Complex n1; Complex n2(5,10); Complex n3(7, 8); Complex n4(6); cout << "n1 = "; n1.Show(); cout << '\n'; cout << "n2 = "; n2.Show(); cout << '\n'; cout << "n3 = "; n3.Show(); cout << '\n'; cout << "n4 = "; n4.Show(); cout << '\n'; return 0; }