摘要: 实验任务3 Complex.hpp #pragma once #include <iostream> #include <cmath> class Complex { public: Complex(double r = 0, double i = 0) { real = r; imag = i; 阅读全文
posted @ 2023-10-21 21:01 ~Lucky 阅读(31) 评论(0) 推荐(0)