摘要:
#include <iostream> #include <math.h> using namespace std; bool is_prime(unsigned long long n) { //quick unsigned long long stop = n / 6 + 1, Tstop = 阅读全文
摘要:
#include <iostream> #include <iomanip> #include <cstring> using namespace std; template <class T> class CArray3D { // 在此处补充你的代码 public: int x, y, z; T 阅读全文
摘要:
#include <iostream> #include <cstring> #include <cstdlib> #include <cstdio> using namespace std; const int MAX = 110; class CHugeInt { public: int a[2 阅读全文