本文共 659 字,大约阅读时间需要 2 分钟。
第1行:大数A第2行:大数B(A,B的长度 <= 1000,A,B >= 0)
输出A * B
123456234567
28958703552
1 import java.math.BigInteger; 2 import java.util.Scanner; 3 4 5 public class sss { 6 7 /** 8 * @param args 9 */10 public static void main(String[] args) {11 // TODO Auto-generated method stub12 Scanner in=new Scanner(System.in);13 BigInteger a,b;14 a=in.nextBigInteger();15 b=in.nextBigInteger();16 System.out.println(a.multiply(b));17 }18 }
转载地址:http://dqpjx.baihongyu.com/