Skip to content

Instantly share code, notes, and snippets.

@azyobuzin
Created February 27, 2014 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azyobuzin/9246006 to your computer and use it in GitHub Desktop.
Save azyobuzin/9246006 to your computer and use it in GitHub Desktop.
foreach (var i in System.Linq.Enumerable.Range(1, 100))
System.Console.WriteLine(
i % 15 == 0 ? "FizzBuzz"
: i % 3 == 0 ? "Fizz"
: i % 5 == 0 ? "Buzz"
: i.ToString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment