Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.InteropServices;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApp3
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Сколько вам лет : ");
- int age = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine();
- Console.Write("Как вас зовут : ");
- string name = Console.ReadLine();
- Console.WriteLine();
- Console.Write("Сколько у вас домашних животных : ");
- int petNumber = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine();
- Console.Write("Ваш любимый символ : ");
- char sumbol = Convert.ToChar(Console.ReadLine());
- Console.WriteLine();
- Console.WriteLine($"Вас зовут {name} , вам {age} лет ,у вас {petNumber} домашних животных и любимый ваш символ {sumbol} .");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment