注:
输出示例多了两个换行,实际上是没有的,刚开始因为这样一直格式错误。
思路:
- 实部为0
- 虚部为0
- 输入0
#include <bits/stdc++.h>
using namespace std;
ostream &sp(ostream &output);
class Complex
{
private:
string real, imag;
string str;
public:
Complex() {
}
Complex(string a) : str(a) {
}
~Complex() {
}
void disp();
void setRI();
};