51 Nod 1027 大数乘法【Java大数乱搞】
1027 大数乘法
基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题
给出2个大整数A,B,计算A*B的结果。
Input
第1行:大数A第2行:大数B
(A,B的长度 <= 1000,A,B >= 0)
Output
输出A * B
Input示例
123456234567
Output示例
28958703552
题目链接:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1027
分析:学了简单的Java,就来体验了一波Java的爽感,Java大法真的好啊,这题是51Nod小数据版本,不过用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 }
以上是 51 Nod 1027 大数乘法【Java大数乱搞】 的全部内容, 来源链接: utcz.com/z/391640.html