Advertisement
DrDemonik

Untitled

Mar 12th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. Console.Write("Введите имя: ");
  2. string name = Console.ReadLine();
  3. string str1or3="";
  4. string str2="";
  5. for(int i = 0; i < 4 + name.Length; i++)
  6. {
  7.     str1or3 += "$";
  8.     if (i == 0)
  9.         str2 += "$ ";
  10.     else if (i == 2 )
  11.         str2 += name;
  12.     else if(i == 3 + name.Length)
  13.         str2 += " $";
  14.                
  15. }
  16. Console.WriteLine(str1or3);
  17. Console.WriteLine(str2);
  18. Console.WriteLine(str1or3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement