超长正整数相加, BigInteger, 华为
Posted lixyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了超长正整数相加, BigInteger, 华为相关的知识,希望对你有一定的参考价值。
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, 华为的主要内容,如果未能解决你的问题,请参考以下文章