Skip to content

Instantly share code, notes, and snippets.

@shinobcrc
Last active June 22, 2016 02:59
Show Gist options
  • Save shinobcrc/71f1ec5e97a08abf8c2e96f225aa12bc to your computer and use it in GitHub Desktop.
Save shinobcrc/71f1ec5e97a08abf8c2e96f225aa12bc to your computer and use it in GitHub Desktop.
fizzbuzz
def fizzbuzz(max)
(1..max).each do |i|
if i % 15 == 0
puts "FizzBuzz"
elsif i % 5 == 0
puts "Buzz"
elsif i % 3 == 0
puts "Fizz"
else
puts i
end
end
end
fizzbuzz(100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment