Advertisement
VodVas

Толковый словарь

Sep 10th, 2023 (edited)
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.58 KB | Software | 0 0
  1. namespace Толковый_словарь
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             Dictionary<string, string> dictionary = new Dictionary<string, string>();
  8.  
  9.             bool isRun = true;
  10.  
  11.             string value = "";
  12.  
  13.             dictionary.Add("Абажур", "Косой навес на свет");
  14.             dictionary.Add("Абордаж", "Морск. сцепка, свалка двух судов");
  15.             dictionary.Add("Аврора", "Утренняя заря");
  16.             dictionary.Add("Азот", "Химич. основание, главная стихия селитры");
  17.             dictionary.Add("Альчик", "Арх. игорная говяжья надкопытная кость");
  18.  
  19.             while (isRun)
  20.             {
  21.                 Console.WriteLine();
  22.                 Console.WriteLine("*********** Толковый словарь Даля ************\n");
  23.                 Console.WriteLine("Введите слово для поиска его значения(доступны слова: Абажур, Абордаж, Аврора, Азот, Альчик)");
  24.  
  25.                 string userInput = Console.ReadLine();
  26.  
  27.                 if (dictionary.TryGetValue(userInput, out value))
  28.                 {
  29.                     Console.WriteLine($"{userInput} - {value}");
  30.                 }
  31.                 else
  32.                 {
  33.                     Console.WriteLine("В словаре отсутствует такое слово");
  34.                 }
  35.             }
  36.         }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement