Skip to content

Instantly share code, notes, and snippets.

@PragTob
Last active November 28, 2023 20:22
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 PragTob/5c5367c99c1f4dc628a25292e40f140f to your computer and use it in GitHub Desktop.
Save PragTob/5c5367c99c1f4dc628a25292e40f140f to your computer and use it in GitHub Desktop.
1.upto(100) do |number|
if (number % 3 == 0) && (number % 5 == 0)
puts "FizzBuzz"
elsif number % 3 == 0
puts "Fizz"
elsif number % 5 == 0
puts "Buzz"
else
puts number
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment