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

hdoj 1047

时间:2015-08-05 00:35:54      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

地址:http://acm.hdu.edu.cn/showproblem.php?pid=1047

 

 1 import java.math.BigInteger;
 2 import java.util.Scanner;
 3 
 4 public class Main {
 5 //    static BigInteger one = new BigInteger("1");
 6     public static void main(String[] args) {
 7         int i,T;
 8         BigInteger m,sum;
 9         Scanner cin = new Scanner(System.in);
10         T = cin.nextInt();
11         for( i = 1; i <= T; ++i){
12             sum = BigInteger.ZERO;
13             while(cin.hasNextBigInteger()){
14                 m = cin.nextBigInteger();
15                 if( m.equals(BigInteger.ZERO) )
16                     break;
17                 sum = sum.add(m);
18             }
19             System.out.println(sum);
20             if(i<T)
21                 System.out.println();
22         }
23     }
24 }

 

hdoj 1047

标签:

原文地址:http://www.cnblogs.com/blueprintf/p/4703520.html

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