摘要: 实验任务5 #pragma once #include<iostream> #include<cassert> using namespace std; class vectorInt{ public: vectorInt(int n):size{n} { p=new int[size]; cout 阅读全文
posted @ 2022-11-05 08:10 小樊_1973 阅读(17) 评论(0) 推荐(0) 编辑