lolblach333

Untitled

Apr 14th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. namespace Number_Adder
  5. {
  6. class Program
  7. {
  8.  
  9. static void Main(string[] args)
  10. {
  11. Console.WriteLine("Введите имя");
  12. string Name = Console.ReadLine();
  13. Name.Split(new char[] {}, StringSplitOptions.RemoveEmptyEntries);
  14.  
  15.  
  16. for (int i = 0; i < Name.Length; i++)
  17. {
  18. Name.Split(new char[] {Name[i]}, StringSplitOptions.RemoveEmptyEntries);
  19. Console.WriteLine(Name[i]);
  20. }
  21.  
  22.  
  23. }
  24. }
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment