kwest87

Untitled

Jan 15th, 2024
588
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 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.             string[] words = text.Split(' ');
  11.  
  12.             for (int i = 0; i < words.Length; i++)
  13.             {
  14.                 Console.WriteLine(words[i]);
  15.             }
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment