Created
September 18, 2014 04:27
-
-
Save hpjaj/2bc581e93c671011dbd8 to your computer and use it in GitHub Desktop.
week 3 - 8e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(1..100).each do |num| | |
if num % 3 == 0 && num % 5 == 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