C++ Hexadecimal Calculator Multiplication
问题 I'm having issues where my multiplication method is only handling one row, it's currently not advancing to the next row. The add function is working properly, and I'm able to update the current hex number, but for some reason I can only get one line of multiplication to work. Example input: 111# * 333# = 333 123# * 123# = 369 Here is the code in question: LList* Calculator::multiply(LList& left, LList& right) { int product, carry = 0, lval = 0, rval = 0, zeros = 0; bool calculating = true;