Advertisement
illiden

Untitled

Jul 12th, 2022
770
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CSLight
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             char separator = ' ';
  10.             Console.WriteLine("Введите текст:");
  11.             string text = Console.ReadLine();
  12.             string[] words = text.Split(separator);
  13.  
  14.             foreach (string word in words)
  15.             {
  16.                 Console.WriteLine(word);
  17.             }
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement