puts '動物の名前を入力してください'
animal = gets
if animal == 'cat'
puts 'meow'
elsif animal == 'dog'
puts 'bowwow'
elsif animal == 'cow'
puts 'cow'
else
puts 'Not found'
end
上記のコードなのですが、cat dog cowのどれを入力してもNot foundしか出力しません。
間違いが分かる方いれば教えてください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。