puts 'Please enter your age '
age=gets.chomp
age=age.to_i
if age >=18
division='in the adult '
elsif age >=12
division='in the junior '
elsif age >=5
division='in the novice '
else
puts 'We are sorry, but you are ineligible to play in the league at this time.'
end
puts 'Congratulations! You are '+division+'league.'
sleep 5
我得到的错误是这样的:
We are sorry, but you are ineligible to play in the league at this time.
:18:in `+': can't convert nil into String (TypeError)
:18:in `<main>'