Advertisement
dxoraxs

Untitled

Apr 13th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. using System;
  2.  
  3. namespace homework
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.Write("Введите вашу строку: ");
  10.             string str = Console.ReadLine();
  11.             char delimiterChar =' ';
  12.             string[] words = str.Split(delimiterChar);
  13.             Console.WriteLine("Обнаружено слов: "+ words.Length);
  14.             for (int i=0; i<words.Length;i++)
  15.             {
  16.                 Console.WriteLine(i+1 +". " +words[i]);
  17.             }
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement