I'm having trouble making ruby guessing game.

I can't seem to make my program loop to make it continuously ask the user to guess the number.

Comments

  • I hope that someone can help you soon.
  • This post has been deleted.
  • Here is an example:

    max = 10
    if ARGV.size > 0
    max = ARGV[0].to_i
    end

    puts "I'm choosing a number between 1 and #{max}"
    num = rand(max) + 1
    loop do
    print "Enter guess: "
    reply = STDIN.gets.chomp.to_i
    if reply == num
    puts "You guessed it"
    break
    elsif num < reply
    puts "Lower"
    else
    puts "Higher"
    end
    end

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories