大数乘法(Java)

给出2个大整数A,B,计算A*B的结果。

 收起

输入

第1行:大数A
第2行:大数B
(A,B的长度 <= 1000,A,B >= 0)

输出

输出A * B
import java.math.BigInteger;
import java.util.Scanner;
 
public class Main {
    public static Scanner s = new Scanner(System.in);
 
    public static void main(String args[]) throws Exception {
	Scanner in = new Scanner(System.in);
        BigInteger a = in.nextBigInteger();
        BigInteger b = in.nextBigInteger();
        System.out.println(a.multiply(b));
    }
}

 大数加法:https://mp.csdn.net/postedit/81709983

大数阶乘:https://mp.csdn.net/postedit/81708066

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