Advertisement
PRO100LY4UK

3.6

Aug 19th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CSLight11
  4. {
  5.     internal class Program
  6.     {
  7.         private static void Main(string[] args)
  8.         {
  9.             Console.WriteLine("Введите несколько слов через пробел:\n");
  10.             string textToSplit = Console.ReadLine();
  11.             string[] array = textToSplit.Split();
  12.  
  13.             for (int i = 0; i < array.Length; i++)
  14.             {
  15.                 Console.WriteLine(array[i]+ " ");
  16.             }
  17.         }  
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement