IGRODELOFF

Task12

Mar 6th, 2022 (edited)
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.94 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Task12
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int lengthWords;
  14.             string name;
  15.             string symbol;
  16.             string wordFramed;
  17.             string frame = "";
  18.  
  19.             Console.Write("Введите имя: ");
  20.             name = Console.ReadLine();
  21.             Console.Write("Введите символ для рамки: ");
  22.             symbol = Console.ReadLine();
  23.             wordFramed = symbol + name + symbol;
  24.             lengthWords = wordFramed.Length;
  25.  
  26.             for (int i = 0; i < lengthWords; i++)
  27.             {
  28.                 frame += symbol;
  29.             }
  30.             Console.WriteLine(stringUpDown);
  31.             Console.WriteLine(wordFramed);
  32.             Console.WriteLine(stringUpDown);
  33.         }
  34.     }
  35. }
  36.  
Add Comment
Please, Sign In to add comment