mvvcio.cc
来自「http://gams.cam.nist.gov/acmd/Staff/RPoz」· CC 代码 · 共 19 行
CC
19 行
//// ostream_complex.cc Add I/O routine for printing out complex// numbers.//#ifdef COMPLEX_OSTREAM#include <complex.h>#include <iostream>// AT&T Cfront does not provide for cout << complex ...//std::ostream& operator<<(std::ostream &s, COMPLEX z){ s << (double) real(z) << " " << (double) imag(z) ; return s;}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?