/FizzBuzz

The "Fizz-Buzz test" is an interview question designed to help filter out the 99.5% of programming job candidates who can't seem to program their way out of a wet paper bag. The text of the programming assignment is as follows: "Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”."

Primary LanguageC#MIT LicenseMIT

The FizzBuzz Test Collection

The "Fizz-Buzz test" is an interview question designed to help filter out the 99.5% of programming job candidates who can't seem to program their way out of a wet paper bag. The text of the programming assignment is as follows:

"Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz"." - FizzBuzz Test

Solutions

Submit Your Solution!

Create a Pull Request with your solution. Be sure to specify the following in your PR:

  • Language
  • Compiler/SDK Required to Build
    • Include the specific OS and repository to obtain the Compiler/SDK from. Linux or Windows accepted.
  • Script to Perform the Build

Be practical or creative, but limit your solution to a single source file, please.