本文概述
Ruby for循环遍历特定范围的数字。因此, 如果程序具有固定的迭代次数, 则使用for循环。
Ruby for循环将对表达式中的每个元素执行一次。
句法:
for variable [, variable ...] in expression [do]
code
end
Ruby for循环使用范围
例:
a = gets.chomp.to_i
for i in 1..a do
puts i
end
输出
Ruby for循环使用数组
例:
x = ["Blue", "Red", "Green", "Yellow", "White"]
for i in x do
puts i
end
输出
评论前必须登录!
注册