FizzBuzz Challenge


This challenge is a staple of the software development community. It involves finding spedial events in a data set which most developers identify as the multiples of 3 and 5. My solution however does not limit you to only 3 and 5, you may choose any whole number between 1 and 100, mainly because I set the range limit at 100.

Whenever the algorithm finds a multiple of 3 it will print Fizz, when it finds a multiple of 5 it will print Buzz, and when it finds a multiple of both (15) it will print FizzBuzz.