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