Skip to content

Instantly share code, notes, and snippets.

@takeshik
Created March 24, 2010 04:42
Show Gist options
  • Save takeshik/341993 to your computer and use it in GitHub Desktop.
Save takeshik/341993 to your computer and use it in GitHub Desktop.
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