「Ruby」upto、downtoループを使うサンプル

2020年12月14日

書式
upto(max) → enumerator
upto(max){|date| …} → self
使用例1 upto()

#!/usr/bin/ruby
# -*- coding: UTF-8 -*-

108.upto(115) do |nn|
  p nn
end

実行結果
>ruby test.rb
108
109
110
111
112
113
114
115

書式
downto(min) → enumerator
downto(min){|date| …} → self
使用例2 downto()

#!/usr/bin/ruby
# -*- coding: UTF-8 -*-

30.downto(25) do |nn|
  p nn
end

実行結果
>ruby test.rb
30
29
28
27
26
25

Ruby

Posted by arkgame