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