Skip to content

Instantly share code, notes, and snippets.

@pema99
Created April 15, 2015 19:55
Show Gist options
  • Save pema99/7effa187794035018193 to your computer and use it in GitHub Desktop.
Save pema99/7effa187794035018193 to your computer and use it in GitHub Desktop.
Compact FizzBuzz
for (int i = 0; i < 100; i++)
Console.WriteLine((0 == i % 3 && 0 == i % 5) ? "FizzBuzz" : 0 == i % 3 ? "Fizz" : 0 == i % 5 ? "Buzz" : i.ToString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment