void BigInt::Round(int N) // postcondition: bigint has been rounded to the Nth power of 10 { if (GetDigit(N-1) >= 5) { AddPowerOfTen(*this, N); } ZeroRight(N); }