Skip to content

Instantly share code, notes, and snippets.

@sue445
Created April 29, 2014 14:59
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 sue445/11402875 to your computer and use it in GitHub Desktop.
Save sue445/11402875 to your computer and use it in GitHub Desktop.
ruby版fizzbuzz
1.upto(100) do |num|
if num % 15 == 0
puts "FizzBuzz"
elsif num % 3 == 0
puts "Fizz"
elsif num % 5 == 0
puts "Buzz"
else
puts num
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment