AiSD.Laba2/HuffmanCode/Program.cs

8 lines
162 B
C#
Raw Permalink Normal View History

2023-04-27 16:15:28 +04:00
using HuffmanCode;
2023-04-27 16:15:04 +04:00
Console.WriteLine("Please enter the string:");
string data = Console.ReadLine();
Algoritm algoritm = new Algoritm();
algoritm.work(data);