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.
以下の Ruby コードは期待どおりに動作しません。範囲を認識していないようで、状態1..3を読み取っているだけelseです。範囲の代わりに数値を指定しても機能します。どこが間違っているのかわかりません。
1..3
else
print "Enter your cost: " cost = gets.chomp case cost when 1..3 puts "inexpensive" when 3..5 puts "affordable" else puts "no comments" end