From 64b8735333b06608168293fd7470959c9e941cf8 Mon Sep 17 00:00:00 2001 From: Maxim Papko <125305022+idkWhatUserNameToUse@users.noreply.github.com> Date: Thu, 4 May 2023 15:48:37 +0300 Subject: [PATCH] Delete Program.cs --- Program.cs | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 Program.cs diff --git a/Program.cs b/Program.cs deleted file mode 100644 index 3aeca49..0000000 --- a/Program.cs +++ /dev/null @@ -1,38 +0,0 @@ -using System; -using System.Collections.Generic; - -class Lab3 -{ - public static void Main(string[] args) - { - string text = "Вухатий великий синiй слон. Яблуко в саду. Зелене яблуко? Груша. Жовта слива висить у саду!"; - Console.WriteLine(text); - - // розділяємо текст на окремі речення - string[] textSplit = text.Split(new[] { '.', '?', '!' }, StringSplitOptions.RemoveEmptyEntries); - - // обчислюємо кількість слів у кожному реченні та створюємо масив з кількістю слів у реченнях - int[] amountOfWords = new int[textSplit.Length]; - for (int i = 0; i < textSplit.Length; i++) - { - string[] words = textSplit[i].Trim().Split(' '); - amountOfWords[i] = words.Length; - } - - // створюємо Dictionary, де ключ - кількість слів у реченні, а значення - речення - Dictionary sentenceDictionary = new Dictionary(); - for (int i = 0; i < textSplit.Length; i++) - { - sentenceDictionary.Add(amountOfWords[i], textSplit[i]); - } - - // збираємо відсортований текст з Dictionary відсортованих речень - string sortedText = ""; - foreach (string s in sentenceDictionary.Values) - { - sortedText += $"\n{s.Trim()}"; - } - Console.WriteLine(sortedText); - Console.ReadLine(); - } -} \ No newline at end of file