摘要:
#include <iostream> #include <string> using namespace std; /* 请在这里填写答案 */ class BigInteger{ protected: int a[3005]; int count; public: BigInteger(){ f 阅读全文
摘要:
类的初始化、构造函数的定义 当未定义构造函数时会自动生成一个构造函数,默认为空 #include<iostream> using namespace std; class fun{ public: fun(); void show_it(); private: int a; int b; int c 阅读全文