12 2023 档案

摘要:4.hpp #include<iostream> #include<stdexcept> template<typename T> class Vector { private: int size; T* p; public: Vector<T>(int s); Vector<T>(int s, T 阅读全文
posted @ 2023-12-17 19:49 孤独的z 阅读(15) 评论(0) 推荐(0)
摘要:3.hpp #include<iostream> #include<string> using namespace std; class MachinePets { public: MachinePets(const string s); MachinePets(); string get_nick 阅读全文
posted @ 2023-12-02 21:14 孤独的z 阅读(56) 评论(0) 推荐(0)