Hi, I'm new here, and I'm having a problem implementing a multiplication method for a class called VeryLongInt. It's for a homework problem. As far as I know, it should work just like the Bignum class that comes with the JDK. Here is my code for the method:

Code:
    public void multiply (VeryLongInt otherVeryLong)
    {
        final int BASE = 10;
        
        int largerSize, partialProduct, carry
...