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
| Console.WriteLine("Здравствуйте, пройдите небольшую анкету!"); | |
| Console.Write("Как Вас зовут? "); | |
| string name = Console.ReadLine(); | |
| Console.Write("Сколько Вам лет? "); | |
| int age = Convert.ToInt32(Console.ReadLine()); | |
| Console.Write("Где Вы работаете? "); | |
| string job = 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
| int age = 17; | |
| bool goesToTheGym = true; | |
| string name = "Паша"; | |
| float weight = 68.4f; | |
| double height = 190; | |
| uint moneyInBug = 0; | |
| bool haveJob = false; | |
| bool haveGirlFriend = true; | |
| string favoriteGames = "Dota 2"; | |
| string favoriteSinger = "LAZZY2WICE"; |