Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Number_Adder
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Введите имя");
- string Name = Console.ReadLine();
- Name.Split(new char[] {}, StringSplitOptions.RemoveEmptyEntries);
- for (int i = 0; i < Name.Length; i++)
- {
- Name.Split(new char[] {Name[i]}, StringSplitOptions.RemoveEmptyEntries);
- Console.WriteLine(Name[i]);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment