摘要: #include <cstdlib> #include <iostream> using namespace std; int strlen(const char * s) { int i = 0; for(; s[i]; ++i); return i; } void strcpy(char * d 阅读全文
posted @ 2022-02-20 22:26 icefield817 阅读(91) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstring> #include <cstdlib> #include <cstdio> using namespace std; const int MAX = 110; class CHugeInt { public: int a[2 阅读全文
posted @ 2022-02-20 17:24 icefield817 阅读(159) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstring> using namespace std; class Array2 { public: int x, y; int * p; Array2() {} Array2(int xx, int yy) :x(xx), y(yy) 阅读全文
posted @ 2022-02-20 17:23 icefield817 阅读(92) 评论(0) 推荐(0) 编辑