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 TestConsoleApp | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int waitingPeople; | |
| int waitingTime = 10; |
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 TestConsoleApp | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int gold; | |
| int crystalPrice = 10; |
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 TestConsoleApp | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int myGold; | |
| int crystalPrice = 10; |
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 TestConsoleApp | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string villain = "Я герой!"; | |
| string hero = "Я злодей!"; |
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 TestConsoleApp | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int picture = 52; | |
| int row = 3; |
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 TestConsoleApp | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string name; | |
| int age; |
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.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace TestConsoleApp | |
| { | |
| internal class Program | |
| { |