Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static void Main(string[] args)
- {
- Console.Write("Ваше имя: ");
- string name = Console.ReadLine();
- Console.Write("Ваш возраст: ");
- int age = Convert.ToInt32(Console.ReadLine());
- Console.Write("Ваш знак зодиака: ");
- string zodiacSign = Console.ReadLine();
- Console.Write("Ваша место работы: ");
- string work = Console.ReadLine();
- Console.WriteLine($"Вас зовут {name}, вам {age} год, вы {zodiacSign} и работаете на {work}");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement