POJ1503 java

用大数存储就OK
import java.math.BigInteger;
import java.util.Scanner;


public class Main {
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		BigInteger sum=BigInteger.ZERO;
		
		while(true) {
			BigInteger a=sc.nextBigInteger();
			if(a.equals(new BigInteger("0"))) {
				break;
			}
			sum=sum.add(a);
		}
		System.out.println(sum);
	}
}

上一篇:96. 不同的二叉搜索树


下一篇:CF23E Tree(树形DP+高精度)