Ниже продемонстрирован код программы, которая подсчитывает количество слов в строке.
1 2 3 4 5 6 7 8 9 |
static void Main(string[] args) { string sentence; Console.Write("Enter String : "); sentence = Console.ReadLine(); string[] words = sentence.Split(' '); Console.WriteLine("Count of words :"+words.Length); Console.ReadKey(); } |