Skip to content

Instantly share code, notes, and snippets.

@Zorgatone
Created August 6, 2018 19:41
Show Gist options
  • Save Zorgatone/a8f9c57d0c9645371355e4ff4f0727ed to your computer and use it in GitHub Desktop.
Save Zorgatone/a8f9c57d0c9645371355e4ff4f0727ed to your computer and use it in GitHub Desktop.
fizzbuzz.rb
def fizzbuzz(n)
1.upto(n) do |i|
div_by_5 = i % 5 == 0
div_by_3 = i % 3 == 0
if div_by_3 && div_by_5
puts "#{i} Fizzbuzz"
elsif div_by_3
puts "#{i} Fizz"
elsif div_by_5
puts "#{i} Buzz"
else
puts i
end
end
end
fizzbuzz(16) # run it
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment