我有两个整数数组,我想将它们相乘,如下所示:
int[] arr1 = {6, 1}; // This represents the number 16
int[] arr2 = {4, 2}; // This represents the number 24
我想将它们存储在一个新数组中,以便产品显示为:
int[] productArray = {4, 8, 3};
我知道如何通过乘以 2 x 24 之类的数字来做到这一点,因为我可以将这些值推入产品数组中。但是当涉及到超过个位数时,我迷失了。