importjava.math.BigInteger;importjava.util.Scanner;publicclassMain{publicstaticvoidmain(String[] args){// TODO Auto-generated method stubScanner in=newScanner(System.in); BigInteger a=in.nextBigInteger(); BigInteger b=in.nextBigInteger(); System.out.println(a.multiply(b)); } }...
【洛谷】P1303 A*B Problem ...洛谷P1303 A*B Problem(C++版) 原题转送门:https://www.luogu.com.cn/problem/P1303 题目描述 求两数的积。 输入格式 两行,两个整数。 输出格式 一行一个整数表示乘积。 输入输出样例 输入 输出 说明/提示 每个数字不超过 102000 ,需用高精。 代码: 欢迎任何形式的...