Java中大整数乘法

Code:
  1. import java.math.*;   
  2.   
  3. public class BigInt {   
  4.     public static void main(String[] args) {   
  5.         String s1 = new String("1234567898765432100000");   
  6.         String s2 = new String("1234567899999999999999");   
  7.            
  8.         BigInteger bigX = new BigInteger(s1);   
  9.         BigInteger bigY = new BigInteger(s2);   
  10.            
  11.         BigInteger bigXY = bigX.multiply(bigY);   
  12.         System.out.println(s1+" x "+s2+" = "+bigXY);   
  13.            
  14.     }   
  15. }  

更详细信息应该查看java api中,java.math.BigInteger;

你可能感兴趣的:(Java中大整数乘法)