Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは私が現在持っているものです。ただし、変数eではなく?e文字の文字コードを表示します。eそれを修正する方法は?ありがとう。
?e
e
('a'..'z').each {|e| puts ?e}
これを試して
('a'..'z').each {|e| puts e.ord.to_s}
本当に出力したい場合:
(?a..?z).each { |c| puts c.ord }
26個の数字の配列が必要な場合。
(?a..?z).map(&:ord)
あるいは:
puts ('a'.ord..'z'.ord).to_a