摘要: 实验任务五 vectorint.hpp #include<iostream> using namespace std; class vectorint { public: vectorint(int n) { length = n; arr = new int[n]; cout << "constr 阅读全文
posted @ 2022-11-02 21:16 akumanpower 阅读(35) 评论(0) 推荐(0)