Skip to content

Instantly share code, notes, and snippets.

@STAR-ZERO
Created April 12, 2012 11:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save STAR-ZERO/2366628 to your computer and use it in GitHub Desktop.
Save STAR-ZERO/2366628 to your computer and use it in GitHub Desktop.
RubyでFizzBuzz
(1..100).each {|i|
if i % 15 == 0 then
p "Fizz Buzz"
elsif i % 5 == 0 then
p "Buzz"
elsif i % 3 == 0 then
p "Fizz"
else
p i
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment