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
/* LINQ Puzzle #12 ******************************************************* | |
Summary: Create a Fizz Buzz solution using LINQ, preferably a single | |
line. The classic Fizz Buzz works as follows. Print the numbers from 1 | |
to 100, but for multiple of 3 print "Fizz" instead of the number, and for | |
multiples of 5 print "Buzz". For numbers which are multiples of both | |
3 and 5 print "FizzBuzz". Each number should have it's own line. And for | |
printing, use the Console class. | |
http://blog.codinghorror.com/why-cant-programmers-program/ | |
************************************************************************/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment