This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using static System.Console; | |
| namespace NoticeMeSenpai; | |
| public class Program { | |
| const string endl = "\n"; | |
| public static int Main() { | |
| S a = "Hello", b = "World!"; | |
| C cout, cin, _; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int n = 100; | |
| Console.WriteLine(string.Join('\n',Enumerable.Range(0, n).Select(i => ((i % 3 == 0 ? "Fizz" : "") + (i % 5 == 0 ? "Buzz" : "")) is string ii ? (ii != "" ? ii : i.ToString()) : ""))); |