#include<iostream>
#include<cstdio>
#include<vector>
#include<cstring>
using namespace std;
struct BigInteger{
static const int BASE=100000000;
static const int WIDTH=8;
vector<int> s;
BigInteger (long long num=0) {*this=num;}
BigInteger operator = (long long num)
{
s.clear();
do{
s.push_back(num%BASE);
num/=BASE;
}while(num);
return *this;
}
BigInteger operator = (const string &str)
{
s.clear();
int x,len=(int)(str.length()-1)/WIDTH+1;
for(int i=0;i<len;i++)
{
int end=(int)str.length()-i*WIDTH;
int start=max(0,end-WIDTH);
sscanf(str.substr(start,end-start).c_str(),"%d",&x);
s.push_back(x);
}
return *this;
}
};
ostream& operator << (ostream &out,const BigInteger &x)
{
out<<x.s.back();
for(int i=(int)x.s.size()-2;i>=0;i--)
{
char buf[20];
sprintf(buf,"%08d",x.s[i]);
for(int j=0;j<(int)strlen(buf);j++) out<<buf[j];
}
return out;
}
istream& operator >> (istream &in,BigInteger &x)
{
string s;
if(!(in>>s)) return in;
x=s;
return in;
}
int main()
{
BigInteger x=141249812749128;
cout<<x<<endl;
cin>>x;
cout<<x<<endl;
return 0;
}
大整数类BigInteger
最新推荐文章于 2020-03-02 17:35:46 发布