Rubyで範囲式を使ってループ処理をする方法です
(0...5).each do |i|
puts "乃木坂46"
end
このソースは0以上5未満(0,1,2,3,4)の5回ループする処理です。
Go to list of users who liked
More than 3 years have passed since last update.
Rubyで範囲式を使ってループ処理をする方法です
(0...5).each do |i|
puts "乃木坂46"
end
このソースは0以上5未満(0,1,2,3,4)の5回ループする処理です。
Register as a new user and use Qiita more conveniently
Go to list of users who liked