complex2.cpp

来自「These are the examples from the followin」· C++ 代码 · 共 50 行

CPP
50
字号
/* 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 <iostream>#include <complex>#include <cstdlib>#include <limits>using namespace std;int main(){    complex<long double> 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<int>::max(),'\n');    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?