Skip to content

Instantly share code, notes, and snippets.

@LevitatingBusinessMan
Created January 10, 2020 01:04
Show Gist options
  • Select an option

  • Save LevitatingBusinessMan/7ea8de6dd631cc0dc5cce05bcd71c786 to your computer and use it in GitHub Desktop.

Select an option

Save LevitatingBusinessMan/7ea8de6dd631cc0dc5cce05bcd71c786 to your computer and use it in GitHub Desktop.
FizzBuzz
(1..100).each do |i|
puts "Fizz" if i % 3 == 0 && i % 5 != 0
puts "Buzz" if i % 5 == 0 && i % 3 != 0
puts "Fizzbuzz" if i % 5 == 0 && i % 3 == 0
puts i if i % 5 != 0 && i % 3 != 0
# Another method
=begin
if i % 3 == 0
if i % 5 == 0
puts "FizzBuzz"
else puts "Fizz" end
elsif i % 5 == 0
puts "Buzz"
else puts i end
=end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment