public static void Main()
Console.WriteLine("How many games?");
int noOfGamesInMatch = Convert.ToInt16(Console.ReadLine());
for (int noOfGamesPlayed = 1; noOfGamesPlayed <= noOfGamesInMatch; noOfGamesPlayed = noOfGamesPlayed + 1)
Console.WriteLine("Did Player One win the game (enter Y or N)?");
char playerOneWins = Convert.ToChar(Console.ReadLine());
if (playerOneWins == 'Y')
playerOneScore = playerOneScore + 1;
playerTwoScore = playerTwoScore + 1;
Console.WriteLine("Player One Score: " + playerOneScore);
Console.WriteLine("Player Two Score: " + playerTwoScore);