📜  Ruby For循环

📅  最后修改于: 2021-01-08 13:01:28             🧑  作者: Mango

Ruby for循环

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 

输出: