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

POJ 1503 Integer Inquiry 大数 难度:0

时间:2015-07-12 01:47:06      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://poj.org/problem?id=1503

 

技术分享
 1 import java.io.*;
 2 import java.math.BigInteger;
 3 import java.util.Scanner;
 4  
 5 public class Main {
 6     public static void main(String []args) throws IOException{
 7         Scanner scanner=new Scanner(System.in);
 8         BigInteger a=BigInteger.ZERO;
 9         BigInteger A=BigInteger.ZERO;
10         do{
11             a=scanner.nextBigInteger();
12             A=A.add(a);}
13         while(!a.equals(BigInteger.ZERO));
14         System.out.println(A);
15     }
16 }
View Code

 

POJ 1503 Integer Inquiry 大数 难度:0

标签:

原文地址:http://www.cnblogs.com/xuesu/p/4639757.html

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