Karine
Simplemente puede sumar el primer número por el segundo número de veces. Suponga que desea ejecutar X * Y, luego agregue X para Y número de veces
Oxidado
Importar java.math.BigInteger; Public class MultiplyTest {public static void main (String [] args) {BigInteger bigInt1 = new BigInteger ("5"); BigInteger bigInt2 = new BigInteger ("8"); System.out.println (bigInt1.multiply (bigInt2)); }}