摘要:
实验四 vectorInt.hpp #pragma once #include<iostream> using namespace std; class vectorInt { private: int size; int* p; public: vectorInt(int n) :size{ n 阅读全文
摘要:
实验3 数组、指针与现代C++标准库 task 5 Info.hpp #include<iostream> #include<string> using std::string; using std::cout; using std::cin; using std::endl; class Info 阅读全文
摘要:
#My blog adress #include<iostream> using namespace std; int main(){ cout<<"my blog :https://www.cnblogs.com/lkx1366070554/"<<endl; } ###That's all 阅读全文