-1

如何在中实现这个C#for循环IronPython,我似乎无法找到一种方法来i - 10实现IronPython

        int amount = 32;
        int scrolls = 0;
        int mets = 0;
        if (amount >= 10) {
            for (int i = amount; i >= 10; i -= 10) {
                scrolls++;
                if (i - 10 < 10)
                    mets = i - 10;
            }
        }
4

1 回答 1

1

您的循环退出条件是i >= 10. 您的循环进入条件是amount >= 10. i设置为您amount的循环条目,这已经是>= 10. 你的循环永远不会执行。

于 2013-07-12T20:51:59.693 回答