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 System; | |
| namespace CSHome | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| GetNumber(out int number); | |
| Console.WriteLine(); |
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 System; | |
| namespace CSHome | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string symbolLine = "(()(()))"; | |
| int currentDepth = 0; |
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 System; | |
| namespace CSHome | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int[] numbers = { 1, 2, 3, 4}; | |
| Console.WriteLine(string.Join(", ", numbers)); |
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 System; | |
| namespace CSHome | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string text = "Привет всему миру и вам лично"; | |
| Console.WriteLine(text); |
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 System; | |
| namespace CSHome | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int length = 10; | |
| int[] numbers = new int[length]; |
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 System; | |
| namespace CSHome | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Console.InputEncoding = System.Text.Encoding.Unicode; | |
| Console.OutputEncoding = System.Text.Encoding.Unicode; |
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 System; | |
| using System.Security.Cryptography; | |
| namespace CSHome | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Console.InputEncoding = System.Text.Encoding.Unicode; |
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 System; | |
| namespace CSHome | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Console.InputEncoding = System.Text.Encoding.Unicode; | |
| Console.OutputEncoding = System.Text.Encoding.Unicode; |
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 System; | |
| namespace CSHome | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Console.InputEncoding = System.Text.Encoding.Unicode; | |
| Console.OutputEncoding = System.Text.Encoding.Unicode; |
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 System; | |
| namespace CSHome | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Console.InputEncoding = System.Text.Encoding.Unicode; | |
| Console.OutputEncoding = System.Text.Encoding.Unicode; |
NewerOlder