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;

    原文作者:大整数乘法问题
    原文地址: https://blog.csdn.net/tsyj810883979/article/details/6491011
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞