Advertisement
SnowPhoenix347

3.6

Oct 29th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace FifthProject
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string str;
  14.  
  15.             Console.WriteLine("Введите строку: ");
  16.  
  17.             str = Console.ReadLine();
  18.             string[] strs = str.Split(' ');
  19.  
  20.             for (int i = 0; i < strs.Length; i++)
  21.             {
  22.                 Console.WriteLine(strs[i]);
  23.             }
  24.         }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement