标签: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