AdemDev

Задание 3. Работа со строками

Aug 28th, 2023 (edited)
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp
  4. {
  5. internal class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.Write("Привет! Как тебя зовут? ");
  10. string name = Console.ReadLine();
  11.  
  12. Console.Write("Сколько тебе лет? ");
  13. string age = Console.ReadLine();
  14.  
  15. Console.Write("В каком городе ты живешь? ");
  16. string city = Console.ReadLine();
  17.  
  18. Console.Write("Какая у тебя проффесия? ");
  19. string profession = Console.ReadLine();
  20.  
  21. string report = $"Тебя зовут {name}, твой возраст - {age}. Ты проживаешь в городе {city}, твоя проффесия - {profession}";
  22. Console.WriteLine(report);
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment