摘要:
#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 阅读全文
摘要:
#include <iostream> #include <cstring> #include <cstdlib> #include <cstdio> using namespace std; const int MAX = 110; class CHugeInt { public: int a[2 阅读全文
摘要:
#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) 阅读全文