10 2023 档案

摘要:任务3 #include "Complex.h" #include<iostream> #include<cmath> Complex::Complex(double real, double imag): real{real}, imag{imag} {} Complex::Complex(con 阅读全文
posted @ 2023-10-23 01:49 Tantivy 阅读(19) 评论(0) 推荐(0)
摘要:#include<iostream> #include<string> #include<vector> #include<array> template<typename T> void output1(const T &obj){ for (auto i: obj) std::cout << " 阅读全文
posted @ 2023-10-20 08:19 Tantivy 阅读(55) 评论(0) 推荐(0)