static string PlayerName1;
static string PlayerName2;
static string EnterScore;
static int Player1PointsScored;
static int Player2PointsScored;
public static void Main()
while(GameIsNotOver() == false)
public static void SetScoresToZero()
public static void PrintCurrentScores()
Console.WriteLine("Current Score: " + Player1PointsScored + "-" + Player2PointsScored);
public static bool GameIsNotOver()
public static void GetNextScore()
Console.WriteLine("Umpire: Who scored the point? Enter A for " + PlayerName1 + " or B for "+ PlayerName2);
EnterScore = Console.ReadLine();
public static void GetPlayerNames()
Console.WriteLine("Player name 1:");
PlayerName1 = Console.ReadLine();
Console.WriteLine("Player name 2");
PlayerName2 = Console.ReadLine();