摘要: 1 #include <iostream> 2 #include <cmath> 3 using namespace std; 4 5 class Complex { 6 private: 7 float re, im; 8 public: 9 Complex(float r, float i = 阅读全文
posted @ 2023-04-25 21:56 Code13 阅读(47) 评论(0) 推荐(0) 编辑