| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,8 @@ | |||
| 1 | + static public void Main() | ||
| 2 | + { | ||
| 3 | + for (int i =1; i < 100; i++) | ||
| 4 | + { | ||
| 5 | + Console.WriteLine((i%3==0 && i%5==0)?"Fizz Buzz":i%3==0 ?"Fizz": i%5==0 ?"Buzz":i.ToString()); | ||
| 6 | + } | ||
| 7 | + | ||
| 8 | + } | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments