Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp14
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Введите имя : ");
- string name = Console.ReadLine();
- Console.WriteLine();
- Console.Write("Введите символ : ");
- char symbol = Convert.ToChar(Console.Read());
- Console.WriteLine();
- string middleRow = symbol + name + symbol;
- string edgeRow = "";
- for (int i = 0; i < middleRow.Length; i++)
- {
- edgeRow += symbol;
- }
- Console.WriteLine(edgeRow);
- Console.WriteLine(middleRow);
- Console.WriteLine(edgeRow);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment