2015-07-22 92 views
0

以下是我的代碼BigInteger,我不知道我哪裏出錯了,有人可以請我更正我的代碼嗎?的count.add(BigInteger.ONE)count我不知道我在哪裏出錯BigIntegers

import java.math.BigInteger; 
import java.util.Scanner; 

public class Class2 { 

    public static void main(String[] args) {  
     Scanner num = new Scanner(System.in); 
     System.out.println("Enter BigInteger number : "); 
     BigInteger nbn = num.nextBigInteger(); 

     for(BigInteger count = BigInteger.ZERO; 
       count.compareTo(nbn) <= 0; 
       count.add(BigInteger.ONE)) { 
      System.out.println(count); 
     } 
    } 
} 
+0

你沒有提到什麼問題? –

回答

5

分配值:

​​
+0

@PiyushRaghatate [請不要對您的問題或回答說「謝謝」](http://stackoverflow.com/help/someone-answers) – Turing85

相關問題