answered question 9/15/2010 How To Multiply Two Numbers Without Using Operator * In Java? Import 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)); } }