Skip to content

Instantly share code, notes, and snippets.

@akiinyo
Created October 27, 2011 13:14
Show Gist options
  • Save akiinyo/1319508 to your computer and use it in GitHub Desktop.
Save akiinyo/1319508 to your computer and use it in GitHub Desktop.
素直にかくとこうなる。
range = 1..100
range.each do |num|
if (num%3 == 0 && num%5 == 0)
p 'FizzBuzz'
elsif (num%3 == 0)
p 'Fizz'
elsif (num%5 == 0)
p 'Buzz'
else
p num
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment