简单的计数器循环ruby

前端之家收集整理的这篇文章主要介绍了简单的计数器循环ruby前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对于ruby,有时会有一个柜台,还是要做以下事情
count = 0
4.times do
puts "this is the count #{count}"
count = count+1

解决方法

是的,时间产生一个柜台:
4.times do |count|
  puts "this is the count #{count}"
end
原文链接:https://www.f2er.com/ruby/270971.html

猜你在找的Ruby相关文章