Created
July 23, 2013 15:57
-
-
Save douglasjarquin/6063575 to your computer and use it in GitHub Desktop.
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
!#/usr/bin/env ruby | |
=begin | |
1. Write a program that prints the numbers from 1 to 100. | |
2. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". | |
3. For numbers which are multiples of both three and five print "FizzBuzz". | |
=end | |
100.times do |count = 0| | |
if count % 3 == 0 && count % 5 == 0 | |
puts 'FizzBuzz' | |
elsif count % 3 == 0 | |
puts 'Fizz' | |
elsif count % 5 == 0 | |
puts 'Buzz' | |
else | |
puts count += 1 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment