| ||||||||||
| Online Judge | Problem Set | Authors | Online Contests | User | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest | |||||||||
用java写 觉得有点对不起观众啊import java.math.BigInteger;
import java.util.Scanner;
/**
*
* @author FangZhiyang
*/
public class Main
{
public static void main(String[] args)
{
Scanner cin = new Scanner(System.in);
String input = cin.nextLine();
BigInteger result = new BigInteger("0");
while (!input.equals("0"))
{
result = result.add(new BigInteger(input));
input = cin.nextLine();
}
System.out.println(result);
}
}
Followed by: Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator