不要让昨天 占据你的今天 夏午晴天

夏午晴天

大数乘法java版

 1 import java.util.*;
 2 import java.math.*;
 3 
 4 public class NumMul{
 5     public static void main(String args[]){
 6         Scanner cin = new Scanner(System.in);
 7         BigInteger a, b;
 8         while(cin.hasNext()){
 9             a = cin.nextBigInteger();
10             b = cin.nextBigInteger();
11             System.out.println(a.multiply(b));
12         }
13     }
14 }

 

posted on 2017-04-20 21:50  夏晴天  阅读(143)  评论(0编辑  收藏  举报

导航

Live2D