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);
}
}
}
你沒有提到什麼問題? –