課題1
1から100までの整数の合計を求めるプログラムをRubyで記述
code:sum.rb
total = 0
(1..100).each { |i| total += i }
puts total
code:実行結果
% ruby sum.rb
5050
%