如何在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;
}
}
答案 0 :(得分:1)
您的循环退出条件为i >= 10
。您的循环条目是amount >= 10
。 i
设置为您的amount
循环条目,该条目已为>= 10
。你的循环永远不会执行。