摘要: #pragma once #include<iostream> #include<cmath> using namespace std; class complex { public: complex(double r = 0.0, double i = 0.0) :real(r), imag(i) 阅读全文
posted @ 2022-10-17 13:02 。a 阅读(31) 评论(0) 推荐(0)