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 практика | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int minutesInHour = 60; | |
| int minutesOnOnePeople = 10; | |
| Console.Write("Людей в очереди: "); |
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 практика | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int cristalPrice = 4; | |
| Console.Write("Сколько у вас золота:"); | |
| int goldQuantity = Convert.ToInt32(Console.ReadLine()); |
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 практика | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string name = "Abramow"; | |
| string surname = "Nikita"; | |
| Console.WriteLine($"До перестановки: Имя: {name}; Фамилия {surname}"); |
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 практика | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int pictureInAlbom = 52; | |
| int pictureInRow = 3; | |
| int rowQuantity = pictureInAlbom / pictureInRow; |
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 практика | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int cucumbersQuantity = 10; | |
| int tomatesQuantity = 23; | |
| int agePlayer = 18; |
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
| namespace практика | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Console.Write("Как вас зовут?:"); | |
| string name = Console.ReadLine(); | |
| Console.Write("Сколько вам лет?:"); | |
| string age = Console.ReadLine(); |
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 практика | |
| { | |
| internal class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| int cucumbers = 10; | |
| int tomates = 23; | |
| int age = 18; |