2014-09-09

424 - Integer Inquiry


題目:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=365


import java.util.*;
import java.lang.*;
import java.math.BigInteger;

public class Main{
 
 public  static void main(String[] args) {
  Scanner k = new Scanner(System.in);
  int index=0;
  BigInteger data = new BigInteger("0");
  while(k.hasNext()){
   String input = k.next();
   if(input.equals("0")){
    System.out.println(data.toString());
    break;
   }
   data=data.add(new BigInteger(input));
      
  }
 }
 
 
 }


沒有留言:

張貼留言

(VM) Ubuntu enable ssh

OS版本:14.04 LTS 相關指令: sudo apt-get install openssh-server Port forwarding設定 : 以virtual box為例子,網路->進階->連接阜轉送(port forwarding) ...