摘要: #include<iostream>using namespace std; class Complex{public: Complex(double r = 0, double i = 0) :real(r), imag(i) { } Complex operator+(Complex& c2) 阅读全文
posted @ 2023-04-12 12:43 a_true 阅读(47) 评论(0) 推荐(0)