Karine
Vous pouvez simplement ajouter le premier nombre pour le deuxième nombre de fois. Supposons que vous vouliez exécuter X * Y, puis ajoutez X pour Y nombre de fois
Rouillé
Importez 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)); } }