基准时间限制:2 秒 空间限制:131072 KB 分值: 80 难度:5级算法题
给出2个大整数A,B,计算A*B的结果。
Input
第1行:大数A 第2行:大数B (A,B的长度 <= 100000,A,B >= 0)
Output
输出A * B
Input示例
123456 234567
Output示例
28958703552
题目链接:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1028
分析:学了简单的Java,就来体验了一波Java的爽感,Java大法真的好啊!
下面给出AC代码:
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 stub 12 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 }
时间: 2024-10-06 00:31:10