/* קלט: שם מועמד ורשימה ממוינת של שמות פלט: האם המועמד התקבל ומספר השמות שהיה עליו לשמוע */ using System; public class NameFinder { public static void Main() { // הגדרת משתנים ואתחולם string name; string str; int counter = 1; // קלט שם מבוקש Console.Write("Enter the candidate name: "); name = Console.ReadLine(); // לולאת זקיף Console.Write("Enter first winner name: "); str = Console.ReadLine(); // כל עוד לא עברנו את שם המועמד while (name.CompareTo(str) > 0) { counter++; Console.Write("Enter next winner name: "); str = Console.ReadLine(); } // while if (name == str) Console.WriteLine("{0} is accepted", name); else Console.WriteLine("{0} is not accepted", name); Console.WriteLine("{0} Names", counter); } // Main } // class NameFinder