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