BigNumber icon indicating copy to clipboard operation
BigNumber copied to clipboard

A really long long long long long long number in C++

Results 2 BigNumber issues
Sort by recently updated
recently updated
newest added

when I calculate this: ``` BigNumber(0) - BigNumber(3)*BigNumber(4) ``` it is return 12. In your code: ``` BigNumber operator-(const BigNumber& number) const noexcept(true) { if (this->isPositive() && !number.isPositive()) { return...