12 2024 档案

摘要:Vector.hpp #include <iostream> #include <stdexcept> using namespace std; template<typename T> class Vector { private: int length; T *space; public: Ve 阅读全文
posted @ 2024-12-17 20:57 黄骑 阅读(17) 评论(0) 推荐(0)
摘要:pets.hpp #include <iostream> #include <vector> #include <string> using namespace std; using std::string; class MachinePets { protected: string nicknam 阅读全文
posted @ 2024-12-02 22:21 黄骑 阅读(14) 评论(0) 推荐(0)