BigInteger p = new BigInteger("1");
BigInteger m = new BigInteger("1");
BigInteger j = new BigInteger("1");
BigInteger n = new BigInteger("3");
BigInteger one = new BigInteger("1");
while (m.compareTo(n) == -1) {
    while (j.compareTo(n) == -1) {
        p = m.multiply(j);
        System.out.println("m=" + m + " j=" + j + " p=" + p);
        j = j.add(one);
    }
    m = m.add(one);
}


为什么输出是

m=1 j=1 p=1
m=1 j=2 p=2


不是吗

m=1 j=1 p=1
m=1 j=2 p=2
m=2 j=1 p=1
m=2 j=2 p=2


最佳答案

否。为什么j从2还原为1?您只是添加而已。

关于java - 为什么程序输出错误?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23049016/

10-15 11:24