Advertisement
DrDemonik

Untitled

Mar 13th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. using System;
  2. namespace Lesson8
  3. {
  4.     class Program
  5.     {
  6.         static void Main(string[] args)
  7.         {
  8.             Console.WriteLine("Введите строку на Ваше усмотрение->");
  9.             string str = Console.ReadLine();
  10.             string[] strs= str.Split(' ');
  11.             Console.WriteLine("Расчленяем строку->");
  12.             for (int i = 0; i < strs.GetLength(0); i++)
  13.             {
  14.                 Console.WriteLine(strs[i]);
  15.             }
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement