02 2023 档案
摘要:#include <iostream> #include <cstring> #include <algorithm> using namespace std; class A { public: int first,second; A(int a, int b) { first = a; seco
阅读全文
摘要:#include <iostream> #include <cstring> #include <algorithm> using namespace std; class carray { int size; int* ptr;//指向数组的指针 public: carray(int size);
阅读全文