摘要: #include<iostream> using namespace std; class Complex { double real, imag; public: /*析构函数*/ Complex(double r = 0, double i = 0) :real(r), imag(i) {} / 阅读全文
posted @ 2022-08-12 09:32 xuchaoxin1375 阅读(10) 评论(0) 推荐(0)