AlexRaynor

3.6 Split

Sep 5th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApplication2
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             String UserString;
  10.  
  11.             Console.WriteLine("Введите строку:");
  12.             UserString = Convert.ToString(Console.ReadLine());
  13.  
  14.             string[] words = UserString.Split(' ');
  15.             foreach (var word in words)
  16.             {
  17.                 Console.WriteLine(word);
  18.             }
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment