/* The following code example is taken from the book * "The C++ Standard Library - A Tutorial and Reference" * by Nicolai M. Josuttis, Addison-Wesley, 1999 * * (C) Copyright Nicolai M. Josuttis 1999. * Permission to copy, use, modify, sell and distribute this software * is granted provided this copyright notice appears in all copies. * This software is provided "as is" without express or implied * warranty, and with no claim as to its suitability for any purpose. */ #include #include #include #include using namespace std; int main() { complex c1, c2; while (cin.peek() != EOF) { // read first complex number cout << "complex number c1: "; cin >> c1; if (!cin) { cerr << "input error" << endl; return EXIT_FAILURE; } // read second complex number cout << "complex number c2: "; cin >> c2; if (!cin) { cerr << "input error" << endl; return EXIT_FAILURE; } if (c1 == c2) { cout << "c1 and c2 are equal !" << endl; } cout << "c1 raised to the c2: " << pow(c1,c2) << endl << endl; // skip rest of line cin.ignore(numeric_limits::max(),'\n'); } }