Skip to content

Instantly share code, notes, and snippets.

@Tomo-Fjord
Last active April 7, 2020 00:39
Show Gist options
  • Save Tomo-Fjord/0758c043dd9bc53abb7808aed3e1601d to your computer and use it in GitHub Desktop.
Save Tomo-Fjord/0758c043dd9bc53abb7808aed3e1601d to your computer and use it in GitHub Desktop.
fizz_buzz
(1..100).each do |x|
if x % 5 == 0 && x % 3 == 0
puts "FizzBuzz"
elsif x % 5 == 0
puts "Buzz"
elsif x % 3 == 0
puts "Fizz"
else
puts x
end
end
@rlho
Copy link

rlho commented Apr 4, 2020

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