W1thr

Массивы-7

Jun 8th, 2022
487
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 Homework7
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string text = "word1 word2 word3 word4 word5 word6 word7";
  10.  
  11.             string[] words = text.Split(' ');
  12.  
  13.             for (int i = 0; i < words.Length; i++)
  14.             {
  15.                 Console.WriteLine(words[i]);
  16.             }
  17.         }
  18.     }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment