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”.”
We can’t understand why so many people “fail” the Fizz-Buzz test unless we understand why it is “hard” (for them). Understanding that, we may be able to evaluate the usefulness of this tool, and others, as filtering tools for candidates.
I think Fizz-Buzz is “hard” for some programmers because (#1) it doesn’t fit into any of the patterns that were given to them in school assignments, and (#2) it isn’t possible to directly and simply represent the necessary tests, without duplication, in just about any commonly-used modern programming language.
- So Now we don’t want to tease you more , Here’s the code for the fizzbuzz program in C# :
-
using System; namespace FizzBuzz { class Program { static void Main(string[] args) { int i; for (i = 1; i <= 100; i++) { if ((i%3==0)&&(i%5==0)) { Console.WriteLine("FizzBuzz"); } else if (i%5==0) { Console.WriteLine("Buzz"); } else if (i%3==0) { Console.WriteLine("Fizz"); } else { Console.WriteLine(i); } } Console.Read(); } } } </dd><dd>
