Skip to content

Instantly share code, notes, and snippets.

@dscataglini
Created August 26, 2013 20:00
Show Gist options
  • Save dscataglini/6345942 to your computer and use it in GitHub Desktop.
Save dscataglini/6345942 to your computer and use it in GitHub Desktop.
Fizz Buzz
# Fizz Buzz
# Print the numbers from 1 to 100
# If a number is divisible by 3 print "Fizz" instead
# If a number is divisible by 5 print "Buzz" instead
# If a number is divisible by 3 and 5 print "FizzBuzz" instead
# Sample output
# 1
# 2
# Fizz
# 4
# Buzz
# Fizz
# 7
# 8
# Fizz
# Buzz
# 11
# Fizz
# 13
# 14
# FizzBuzz
# 16
# …
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment