Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class program
- {
- static void Main(string[] args)
- {
- Dictionary<string, string> explanatoryDictionary = new Dictionary<string, string>();
- explanatoryDictionary.Add("Футбол", "Football");
- explanatoryDictionary.Add("Баскетбол", "Basketball");
- explanatoryDictionary.Add("Хоккей", "Hockey");
- explanatoryDictionary.Add("Теннис", "Tennis");
- explanatoryDictionary.Add("Гольф", "Golf");
- Console.Write("Введите слово:");
- string userInput = Console.ReadLine();
- if(explanatoryDictionary.ContainsKey(userInput))
- {
- Console.WriteLine(explanatoryDictionary[userInput]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement