Advertisement
IGRODELOFF

HW: Written Name

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