public static void Main()
string playerName = "Jun Wei";
Console.WriteLine("Hello World");
playerScore = IncrementScore(playerScore);
public static void PrintName(string name)
Console.WriteLine("The player's name is:" + name);
public static int IncrementScore(int scoreNum)
public static void PrintScore(int scoreNum)
Console.WriteLine("The Score is: " + scoreNum);