Описание: - для числа n1=6
и n2 = 34
вы будете делать (6*4)+(0*3) = 24
.
Вот мой код для вышеуказанной проблемы
static int sumOfProductOfDigits(int n1, int n2)
{
if(n1==0 || n2==0)
return 0;
int num = n1%10 * n2%10;
int res = num + sumOfProductOfDigits(n1/10, n2/10);
return res;
}