Created
October 26, 2017 14:01
-
-
Save arferreira/9e533c31badb5e6ebf8ad6d90ddc6d27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_number kicks, attempt, limit | |
puts "\n\n\n\n" | |
puts "Tentativa #{attempt.to_s} de #{limit.to_s}" | |
puts "Chutes até agora: #{kicks.to_s}" | |
puts "Escolha um número: " | |
kick = gets | |
kick = kick.to_i | |
puts "Será que você acertou? Você escolheu o número: #{kick.to_s}" | |
kick | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment