kwest87

Untitled

Dec 19th, 2023
769
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. [StartCode]
  2. using System;
  3.  
  4. namespace ConsoleApp14
  5. {
  6.     internal class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             string[] words = "Привет новый мир!".Split(' ');
  11.  
  12.             foreach(string word in words)
  13.             {
  14.                 Console.WriteLine(word);
  15.             }
  16.         }
  17.     }
  18. }
  19. [EndCode]
Advertisement
Add Comment
Please, Sign In to add comment