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
| public class Class3 | |
| { | |
| static void Main() | |
| { | |
| int crystalPrice = 4; | |
| Console.Write("Введите кол - во золото в вашем кашельке:" ); | |
| int gold = Convert.ToInt32( Console.ReadLine() ); | |
| Console.WriteLine($"Цена кристалла: {crystalPrice}"); |
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
| public class Class3 | |
| { | |
| static void Main() | |
| { | |
| int crystalPrice = 4; | |
| Console.Write("Введите кол - во золото в вашем кашельке:" ); | |
| int gold = Convert.ToInt32( Console.ReadLine() ); | |
| Console.WriteLine($"Цена кристалла: {crystalPrice}"); |
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
| public class Class1 | |
| { | |
| static void Main() | |
| { | |
| int totalImages = 52; | |
| int numberImagesOfRow = 3; | |
| int rowsImages; | |
| int remainsImages; | |
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
| public class Class1 | |
| { | |
| static void Main() | |
| { | |
| int totalImages = 52; | |
| int numberImagesOfRow = 3; | |
| int rowsImages; | |
| int remainsImages; | |
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
| public class Class | |
| { | |
| static void Main() | |
| { | |
| string name; | |
| string nameWork; | |
| int age; | |
| Console.WriteLine("Как вас зовут?"); | |
| name = 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; | |
| public class Class1 | |
| { | |
| public Class1() | |
| { | |
| int age = 18; | |
| char symbol = 'A'; | |
| char emptySymbol = " "; |
NewerOlder