Skip to content

Instantly share code, notes, and snippets.

@takeshik
Created October 12, 2011 15:23
Show Gist options
  • Save takeshik/1281507 to your computer and use it in GitHub Desktop.
Save takeshik/1281507 to your computer and use it in GitHub Desktop.
Console.WriteLine(string.Join(" ", Enumerable.Range(0, 100)
.Select(n => n % 15 == 0
? "Fizz Buzz"
: n % 5 == 0
? "Fizz"
: n % 3 == 0
? "Buzz"
: n.ToString()
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment