C# Code project
I can't find the reasons of the bug. can someone help me? Error is about "z" or "l" letter in football for example This is my code: using System; using System.Collections.Generic; namespace Code_Coach_Challenge { class Program { static void Main(string[] args) { string[] words = { "home", "programming", "victory", "C#", "football", "sport", "book", "learn", "dream", "fun" }; string letter = Console.ReadLine(); bool find=false; for(int count=0;count<10;count++){ if(words[count].Contains(letter)){ Console.WriteLine(words[count]); find=true; } } if(!find) Console.WriteLine("No mach"); } } }