11 2022 档案
摘要:pets.hpp #pragma once #include <iostream> #include <string> using namespace std; class MachinePets{ public: MachinePets(const string s):nickname(s){}
阅读全文
摘要:vectorInt.hpp #pragma once #include <cassert> #include <iostream> using namespace std; class vectorInt{ public: vectorInt(int n); vectorInt(int n, int
阅读全文