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

超长正整数相加, BigInteger, 华为

时间:2020-07-06 13:00:08      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:while   int   正整数   ext   print   system   整数   import   math   

import java.util.*;
import java.math.BigInteger;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext()) {
            BigInteger a = sc.nextBigInteger();
            BigInteger b = sc.nextBigInteger();
            BigInteger c = a.add(b);
            System.out.println(c);
        }
    }
}

超长正整数相加, BigInteger, 华为

标签:while   int   正整数   ext   print   system   整数   import   math   

原文地址:https://www.cnblogs.com/lixyuan/p/13253944.html

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