Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. Console.Write("Введите свое имя:");
  2. string name = Console.ReadLine();
  3. Console.Write("Введите свой возраст:");
  4. int age = Convert.ToInt32(Console.ReadLine());
  5. Console.Write("Введите свой знак зодиака:");
  6. string zodiac = Console.ReadLine();
  7. Console.Write("Введите свое место работы:");
  8. string workLocation = Console.ReadLine();
  9. Console.WriteLine($"Имя:{name}, Возрст:{age}, Знак зодиака:{zodiac}, Место работы:{workLocation}") ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement