Skip to content

Instantly share code, notes, and snippets.

@duien
Created January 31, 2013 18:33
Show Gist options
  • Save duien/4685094 to your computer and use it in GitHub Desktop.
Save duien/4685094 to your computer and use it in GitHub Desktop.
Assignment for the first Rails Girls meetup
# Write a program that prints the numbers from 1 to 100. But for multiples of
# three print 'Fizz' instead of the number and for the multiples of five print
# 'Buzz.' For numbers which are multiples of both three and five print
# 'FizzBuzz.'
def fizz_buzz( limit = 100 )
1.upto(limit) do |i|
print "Fizz" if i % 3 == 0
print "Buzz" if i % 5 == 0
print i if i%3 != 0 and i%5 != 0
print "\n"
end
end
fizz_buzz(100)
@alindeman
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment