Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApp13
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Имя?");
- string UserName = Console.ReadLine();
- Console.WriteLine("Символ?");
- string Symbol = Console.ReadLine();
- for (int i = 0; i < UserName.Length + 4; i++)
- {
- Console.Write(Symbol);
- }
- Console.WriteLine("\n"+ Symbol + " " + UserName + " " + Symbol);
- for (int i = 0; i < UserName.Length + 4; i++)
- {
- Console.Write(Symbol);
- }
- Console.WriteLine("\n");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment