Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace Толковый_словарь
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- Dictionary<string, string> dictionary = new Dictionary<string, string>();
- bool isRun = true;
- string value = "";
- dictionary.Add("Абажур", "Косой навес на свет");
- dictionary.Add("Абордаж", "Морск. сцепка, свалка двух судов");
- dictionary.Add("Аврора", "Утренняя заря");
- dictionary.Add("Азот", "Химич. основание, главная стихия селитры");
- dictionary.Add("Альчик", "Арх. игорная говяжья надкопытная кость");
- while (isRun)
- {
- Console.WriteLine();
- Console.WriteLine("*********** Толковый словарь Даля ************\n");
- Console.WriteLine("Введите слово для поиска его значения(доступны слова: Абажур, Абордаж, Аврора, Азот, Альчик)");
- string userInput = Console.ReadLine();
- if (dictionary.TryGetValue(userInput, out value))
- {
- Console.WriteLine($"{userInput} - {value}");
- }
- else
- {
- Console.WriteLine("В словаре отсутствует такое слово");
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement