码迷,mamicode.com
首页 > 编程语言 > 详细

java实现大数相加问题

时间:2015-12-21 21:49:23      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

闲来没事。写了个acm中常常遇到的大数加减问题的java 解决代码,我想说。用java的BigInteger 非常easy。

大爱java!!

比如:

实现多组输入大数加减问题:

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

public class Bignum {
  public static void main(String[] args) {
     BigInteger bigNumOne;
     BigInteger bigNumTwo;

     Scanner in = new Scanner(System.in);

     while(in.hasNextBigInteger()) {
       bigNumOne  = in.nextBigInteger();
       bigNumTwo  = in.nextBigInteger();

       bigNumOne =  bigNumOne.add(bigNumTwo);

       System.out.println(bigNumOne);
     }
  }
}

技术分享


有没有一种非常爽的感觉!

java实现大数相加问题

标签:

原文地址:http://www.cnblogs.com/bhlsheji/p/5064768.html

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