void BigInt::ZeroRight(int N) // precondition: 1 <= N <= NumDigits() // postcondition: the N rightmost digits of A are 0; // the other digits are unchanged { int k; for(k=0; k < N; k++) { ChangeDigit(k,0); } }