You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a mistake in the body of the function : BigInt BigInt :: operator - (BigInt& n).
To be specific, the mistake lies in Line 313 of the .cpp file, goes like this:
if (sign = -1) {...}
It should be sign == -1 rather than sign = -1.
The text was updated successfully, but these errors were encountered:
There is a mistake in the body of the function : BigInt BigInt :: operator - (BigInt& n).
To be specific, the mistake lies in Line 313 of the .cpp file, goes like this:
if (sign = -1) {...}
It should be sign == -1 rather than sign = -1.
The text was updated successfully, but these errors were encountered: