如何实现循环IronPython

时间:2013-07-12 20:48:43

标签: c# for-loop ironpython

如何在C#中实现此IronPython for循环,我似乎找不到在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;
            }
        }

1 个答案:

答案 0 :(得分:1)

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