kwest87

Untitled

Jan 15th, 2024
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp26
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string text = "Привет меня зовут Федя";
  10.             char space = ' ';
  11.             string[] words = text.Split(space);
  12.  
  13.             for (int i = 0; i < words.Length; i++)
  14.             {
  15.                 Console.WriteLine(words[i]);
  16.             }
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment