Advertisement
VodVas

Untitled

Aug 15th, 2023
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. Console.WriteLine("Как вас зовут?");
  2. string name = Console.ReadLine();
  3. Console.WriteLine("Какой у вас знак зодиака?");
  4. string starSign = Console.ReadLine();
  5. Console.WriteLine("Кем вы работаете?");
  6. string work = Console.ReadLine();
  7. Console.WriteLine("Сколько вам лет?");
  8. int age = Convert.ToInt32(Console.ReadLine());
  9.  
  10. Console.WriteLine($"Вас зовут {name}, вы {starSign}, вам {age}, вы работаете {work}");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement