Skip to content

FizzBuzz(Ruby)

   

I tried to solve FizzBuzz with Ruby. It's interesting to see the differences between different languages when creating FizzBuzz.

for num in 1..20 do
if num%3 == 0 && num%5 == 0 then
puts('Fizz Buzz')
elsif num%3 == 0 then
puts('Fizz')
elsif num%5 == 0
puts('Buzz')
else
puts(num)
end
end
view raw fizzbuzz.rb hosted with ❤ by GitHub

  1. Web Testing Campe(Ruby)