我写了这段代码:
def sumeven (i)
result = 0
while i < 100
if i % 2 == 0
result += i
end
i += 1
end
result
end
我如何给出i
方程?当我在终端(mac)中运行方程式时,我没有得到任何输出,因为我无法弄清楚如何用 替换i
数字。在文本编辑器中用数字替换“i”仍然没有输出。
我写了这段代码:
def sumeven (i)
result = 0
while i < 100
if i % 2 == 0
result += i
end
i += 1
end
result
end
我如何给出i
方程?当我在终端(mac)中运行方程式时,我没有得到任何输出,因为我无法弄清楚如何用 替换i
数字。在文本编辑器中用数字替换“i”仍然没有输出。