Advertisement
maus234

Untitled

Aug 15th, 2021
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Leson01
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13.  
  14. string name;
  15.  
  16. string age;
  17.  
  18. string work;
  19.  
  20. string live;
  21.  
  22. Console.Write("Как вас зовут?:");
  23. name = Console.ReadLine();
  24. Console.Write("Сколько вам лет?:");
  25. age = Console.ReadLine();
  26. Console.Write("Где вы работает?:");
  27. work = Console.ReadLine();
  28. Console.Write("Где вы живете?:");
  29. live = Console.ReadLine();
  30. Console.WriteLine($"Вас зовут {name}, вам {age} лет, вы работаете {work} и живете в городе(селе) {live}");
  31.  
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement