2007-10-02 標準入力から一行づつ読み込み最大値を表示(Rubyの場合) Univ. Ruby ar = Array.new File.open("../data_a.txt","r"){|f| f.each{|num| ar << num.chomp!.to_i } } p ar.max