Skip to content

Instantly share code, notes, and snippets.

@Descalon
Last active December 19, 2015 12:19
Show Gist options
  • Save Descalon/5953778 to your computer and use it in GitHub Desktop.
Save Descalon/5953778 to your computer and use it in GitHub Desktop.
Nice FizzBuzz one liner.
public class Program {
static void Main(string[] args) {
string s;
for (int i = 1; i < 100; i++) {
s = (i % 15 == 0) ? "FizzBuzz" :(i % 3 == 0) ? "Fizz" : (i % 5 == 0) ? "Buzz" : i.ToString();
System.Console.WriteLine(s); //LOG
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment