Not a member of Pastebin yet?
                        Sign Up,
                        it unlocks many cool features!                    
                - using System;
- namespace ConsoleApp
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Привет! Как тебя зовут? ");
- string name = Console.ReadLine();
- Console.Write("Сколько тебе лет? ");
- string age = Console.ReadLine();
- Console.Write("В каком городе ты живешь? ");
- string city = Console.ReadLine();
- Console.Write("Какая у тебя проффесия? ");
- string profession = Console.ReadLine();
- string report = $"Тебя зовут {name}, твой возраст - {age}. Ты проживаешь в городе {city}, твоя проффесия - {profession}";
- Console.WriteLine(report);
- }
- }
- }
Advertisement
 
                    Add Comment                
                
                        Please, Sign In to add comment                    
                 
                    