hi, i'm trying to multiply one biginteger object by another, but my code is not working! does anyone know what i need to do to get this compiling!
thanks to anyone who helps!
class BigIntegerDemo {
public static void main(String[] args) {
System.out.print(multiply(new BigInteger("2000000"), new BigInteger("10000")));
}
BigInteger multiply(BigInteger b1, Biginteger b2) {
return b1.multiply(b2);
}
}
2007-10-29
03:09:28
·
2 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design