Skip to content

Instantly share code, notes, and snippets.

@neet
Created July 28, 2017 16:42
Show Gist options
  • Save neet/e13e53a339c0bd1cfb54e2aef0794f2f to your computer and use it in GitHub Desktop.
Save neet/e13e53a339c0bd1cfb54e2aef0794f2f to your computer and use it in GitHub Desktop.
FizzBuzz.rb
i = 1
while i <= 100 do
if i % 3 == 0
puts "Fizz"
elsif i % 5 == 0
puts "Buzz"
elsif i % 3 == 0 and i % 5 == 0
puts "FizzBuzz"
else
puts i.to_s
end
i += 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment