摘要:
实验2: person.h #pragma once #include<iostream> #include<string> #include <iomanip> using namespace std; class Person { private: string name; string tel 阅读全文
摘要:
1.实现动态的整型数组类 vector.hpp: #pragma once #ifndef VECTOR_INT_HPP #define VECTOR_INT_HPP #include<iostream> class vector_int { private: int* p; int size; p 阅读全文