kwest87

Untitled

Apr 3rd, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. [StartCode]
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ConsoleApp1
  9. {
  10.     internal class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             string text = "Привет как дела";
  15.             Console.WriteLine(text);
  16.             string[] words = text.Split(' ');
  17.  
  18.             for (int i = 0; i < words.Length; i++)
  19.             {
  20.                 Console.WriteLine(words[i]);
  21.             }
  22.         }
  23.     }
  24. }
  25. [EndCode]
Advertisement
Add Comment
Please, Sign In to add comment