码迷,mamicode.com
首页 > 其他好文 > 详细

大数的加减乘除

时间:2014-12-17 09:06:10      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   java   div   log   bs   

= =用c做大数的题真是够够的了,跟着男神学了一下用Java做简单的加减乘除(即add,substract,multiply和divide),下面的代码是多组大数加法的代码。

 

import java.math.BigInteger;
import java.util.*;

public class Main {
    public static void main(String[] args)
    {
        Scanner in=new Scanner(System.in);
        while(in.hasNextBigInteger())
        {
            BigInteger a=in.nextBigInteger();
            BigInteger b=in.nextBigInteger();
            System.out.println(a.add(b));
        }
    }
} 

 

大数的加减乘除

标签:style   blog   ar   color   sp   java   div   log   bs   

原文地址:http://www.cnblogs.com/Highmath/p/4168552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!