Skip to content

Instantly share code, notes, and snippets.

@jonstvns
Last active January 4, 2016 21:09
Show Gist options
  • Save jonstvns/8679479 to your computer and use it in GitHub Desktop.
Save jonstvns/8679479 to your computer and use it in GitHub Desktop.
for (int i = 1; i <= 100; i++) Console.WriteLine("{0:#;}{1:;;Fizz}{2:;;Buzz}", i % 3 * i % 5 == 0 ? 0 : i, i % 3, i % 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment