From 9ec0b06627461b94ef4c2198feb94f0c85ee1fa7 Mon Sep 17 00:00:00 2001
From: Maxim Papko <125305022+idkWhatUserNameToUse@users.noreply.github.com>
Date: Thu, 4 May 2023 15:49:25 +0300
Subject: [PATCH] Add files via upload
---
Lab3.csproj | 10 ++++++++++
Program.cs | 38 ++++++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
create mode 100644 Lab3.csproj
create mode 100644 Program.cs
diff --git a/Lab3.csproj b/Lab3.csproj
new file mode 100644
index 0000000..40c60dd
--- /dev/null
+++ b/Lab3.csproj
@@ -0,0 +1,10 @@
+
+
+
+ Exe
+ net6.0
+ enable
+ enable
+
+
+
diff --git a/Program.cs b/Program.cs
new file mode 100644
index 0000000..3aeca49
--- /dev/null
+++ b/Program.cs
@@ -0,0 +1,38 @@
+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