1
I chose the ruby language to learn how to program but I’m stuck in the following exercise:
Write a program that asks for a person’s favorite number. Add one to the number, and suggest the result as a much better favorite number
I can only multiply the number and not add
puts 'Olá, qual é seu número favorito ?'
name = gets.chomp
puts 'Seu número favorito é ' + name + '? Que número legal!'
puts 'Eu acho que, ' + name * 1 + ' é um número favorito muito melhor. :)'
if I change: ' + name * 1 + '
for ' + name + 1 + '
new.Rb:4:in +': no implicit Conversion of Integer into String (Typeerror)
How did you try? Edit the question and include your code.
– bfavaretto