public static void Main()
string inputPlayerOneWeapon;
string inputPlayerTwoWeapon;
Console.WriteLine("Jack 'en Poy");
Console.WriteLine("Select a weapon:");
Console.WriteLine("[1] Paper");
Console.WriteLine("[2] Rock");
Console.WriteLine("[3] Scissor");
Console.Write("Player 1 input: ");
inputPlayerOneWeapon = Console.ReadLine();
if (Int32.TryParse(inputPlayerOneWeapon, out playerOneWeapon) == true)
Console.Write("Player 2 input: ");
inputPlayerTwoWeapon = Console.ReadLine();
if (Int32.TryParse(inputPlayerTwoWeapon, out playerTwoWeapon) == true)
if (playerOneWeapon == playerTwoWeapon)
Console.WriteLine("No winner. Its a draw.");
if (playerOneWeapon == 1 && playerTwoWeapon == 2 ||
playerOneWeapon == 2 && playerTwoWeapon == 3 ||
playerOneWeapon == 3 && playerTwoWeapon == 1)
Console.WriteLine("Player one wins!");
Console.WriteLine("Player two wins!");
Console.WriteLine("Player 2 input error. Please enter numbers 1-3 only.");
Console.WriteLine("Invalid input. Please input a numeric value for player two.");
Console.WriteLine("Player 1 input error. Please enter numbers 1-3 only.");
Console.WriteLine("Invalid input. Please enter a numeric value for player one.");