public static void Main()
Console.WriteLine("Please Enter the total number of votes");
numVotes = Convert.ToInt32(Console.ReadLine());
votes = new string[numVotes];
Console.WriteLine("Please Enter the voting sequence");
for (int i = 0; i < numVotes; i++)
votes[i] = Console.ReadLine();
Console.WriteLine("The result Of the Voting was: B");
Console.WriteLine("The result Of the Voting was: A");
Console.WriteLine("The result Of the Voting was: Tie");
static private void CalcVote(string vote)