Example 1: javascript bigint
const theBiggestInt = 9007199254740991n
const alsoHuge = BigInt(9007199254740991)
const hugeString = BigInt("9007199254740991")
const hugeHex = BigInt("0x1fffffffffffff")
const hugeBin = BigInt("0b11111111111111111111111111111111111111111111111111111")
Example 2: bigint
Bigint::Bigint(std::list<unsigned char>B)
:m_digits(B){}
Bigint::~Bigint(){}
bool Bigint::is_zero()const
{
if(m_digits.front()=='0'){
return true;
}
return false;
}
bool Bigint::is_negative() const{
if(m_is_negative == true){
return true ;
}else
return false;
}
std::ostream& operator<<(std::ostream& out, const Bigint& i){
for(auto b = i.m_digits.begin(); b != i.m_digits.end(); ++b){
out<<(*b);
}
return (out);
}
std::istream& operator>>(std::istream& in, Bigint& i) {
char c;
in.get(c);
if (c == '-') i.m_is_negative = true;
else {
if (! std::isdigit(c)) throw std::runtime_error("Invalid input");
i.m_digits.emplace_front(c);
}
while (in.get(c) && (c != 0xa)) {
if (! std::isdigit(c)) throw std::runtime_error("Invalid input");
i.m_digits.emplace_front(c);
}
i.m_digits.reverse();
while(i.m_digits.front()=='0'&&i.m_digits.size()!= 1){
i.m_digits.pop_front();
if(i.m_digits.size()== 1)
break;
}
return in;
}
Example 3: sql tinyint range
bigint -2^63 (-9,223,372,036,854,775,808) to 2^63-1 (9,223,372,036,854,775,807) 8 Bytes
int -2^31 (-2,147,483,648) to 2^31-1 (2,147,483,647) 4 Bytes
smallint -2^15 (-32,768) to 2^15-1 (32,767) 2 Bytes
tinyint 0 to 255 1 Byte
Example 4: max value of bigint in sql server
bigint -2^63 (-9,223,372,036,854,775,808) to 2^63-1 (9,223,372,036,854,775,807) 8 Bytes
Example 5: main bigint
int main()
{
try
{
Bigint list1 ;
Bigint list2 ;
std::string userinput;
std::cout<<"Please enter the first integer: ";
std::cin >> list1;
std::cout<<"Please enter the second integer: ";
std::cin >> list2;
std::cout<<"Please enter the command (0=+, 1=-, 2=*):\t";
std::cin>>userinput;
if(userinput[0]<48||userinput[0]>50||userinput.length()>1)throw std::runtime_error("invalid input");
switch(userinput[0]%48)
{
case(ADD):
std::cout<<list1+list2<<std::endl;
break;
case(SUB):
std::cout<<list1-list2<<std::endl;
break;
case(MUL):
std::cout<<list1*list2<<std::endl;
break;
}
}catch(std::runtime_error& e){ std::cout<<e.what()<<std::endl;}
return 0;
}