Skip to content

Instantly share code, notes, and snippets.

@Nucleareal
Last active December 25, 2015 16:39
Show Gist options
  • Save Nucleareal/7007252 to your computer and use it in GitHub Desktop.
Save Nucleareal/7007252 to your computer and use it in GitHub Desktop.
C#でFizzBuzz(122文字)
foreach(var v in Enumerable.Range(1,100)){Console.WriteLine(v%15==0?"FizzBuzz":v%3==0?"Fizz":v%5==0?"Buzz":v.ToString());}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment