Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Ruby Basics Conditionals A Better "check_speed" Method

do you the solution to this task\challenge?

def check_speed(speed) if speed < 55 puts "too slow" end if speed > 55 puts "too fast" end if speed == 55 puts "speed OK" end end

program.rb
def check_speed(speed)
  if speed < 55
    puts "too slow"
  end
  if speed > 55
    puts "too fast"
  end
  if speed == 55
    puts "speed OK"
  end
end

1 Answer

Antonio De Rose
Antonio De Rose
20,885 Points

do you the solution to this task\challenge? ???

you've been asked to change the logic from the above you have written to

If we pass a speed of less than 45, check_speed should print "too slow". If we pass a speed of 45 to 60, check_speed should print "speed OK". If we pass a speed of greater than 60, check_speed should print "too fast".

so change your code accordingly.