You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Write a program which asks for a person's favorite number. Have your program add one to the number, then suggest the result as a bigger & better favorite number.
puts "Please tell me what your favourite number is"
fav_number = gets.chomp
new_fav_number = fav_number.to_i + 1
puts " "
puts " Thanks for your answer, your favourite number is " + fav_number.to_s + "however we think " + new_fav_number.to_s + " is even better!"
#Do a bit more work on conversions to make sure to get this correct the first time