Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CollectionsTask1Dictionary
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- const string CommandExit = "q";
- Dictionary <string, string> worlds = new Dictionary<string, string>();
- bool isWorking = true;
- string userInput;
- worlds.Add("привет", "говорят люди, когда встречают друг друга");
- worlds.Add("муж", "объелся груш");
- worlds.Add("жена", "сама сатана");
- worlds.Add("дом", "современная пещера");
- Console.WriteLine("Добро пожаловать в наш толковый словарь!");
- while (isWorking)
- {
- Console.WriteLine($"Для выхода введите \"{CommandExit}\".");
- Console.WriteLine("Какое слово вы хотите узнать?");
- userInput = Console.ReadLine();
- if (userInput == CommandExit)
- {
- isWorking = false;
- }
- else if (worlds.ContainsKey(userInput))
- {
- Console.WriteLine($"{userInput} - {worlds[userInput]}");
- }
- else
- {
- Console.WriteLine("Такого слова нет в нашем словаре, попробуйте другое.");
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement