简单的BigIngeter的乘法

  • Post author:
  • Post category:其他


import java.math.BigInteger;
import java.util.Scanner;
public class Main1 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        BigInteger a  =sc.nextBigInteger();
        BigInteger b  =sc.nextBigInteger();
        System.out.println(a.multiply(b));
    }
}



版权声明:本文为LX15588原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。