Created
March 24, 2010 04:42
-
-
Save takeshik/341993 to your computer and use it in GitHub Desktop.
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
class FizzBuzz | |
{ | |
static void Main() | |
{ | |
#pragma warning disable 184 | |
if (System.Console.WriteLine( | |
System.String.Join(" ", System.Array.ConvertAll(System.Linq.Enumerable.ToArray(System.Linq.Enumerable.Range(1, 100)), | |
i => i % 15 == 0 | |
? "Fizz Buzz" | |
: i % 3 == 0 | |
? "Fizz" | |
: i % 5 == 0 | |
? "Buzz" | |
: i.ToString() | |
)) | |
) is object) | |
{ | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment