Skip to content

Instantly share code, notes, and snippets.

@dd86k
Last active April 6, 2016 03:54
Show Gist options
  • Save dd86k/0af278228ee94522799a1d8b1386f202 to your computer and use it in GitHub Desktop.
Save dd86k/0af278228ee94522799a1d8b1386f202 to your computer and use it in GitHub Desktop.
"One-liner" FizzBuzz in C# 6.0
using static System.Console;
namespace FizzBuzz
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 100; i++) { WriteLine(i % 15 == 0 ? "FizzBuzz" : (i % 5 == 0 ? "Buzz" : (i % 3 == 0 ? "Fizz" : i.ToString()))); }
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment