11 2022 档案

摘要:task4 pets.h #pragma once #include<iostream> #include<string> using namespace std; class MachinePets { public: string nickname; MachinePets() {} Machi 阅读全文
posted @ 2022-11-29 21:29 samapoketto 阅读(13) 评论(0) 推荐(0) 编辑
摘要:实验五 vectorint.h #pragma once #include<iostream> using namespace std; class vectorInt { public: int s, * p; vectorInt(int m) { p = new int [m]; s = m; 阅读全文
posted @ 2022-11-08 20:10 samapoketto 阅读(15) 评论(0) 推荐(0) 编辑