public string playerName;
public string[] choices = new string[3] {"Rock","Paper","Scissors"};
public string[,] outcomes= new string [3,3] {{"Draw", "Lose", "Win"}, {"Win", "Draw", "Lose"}, {"Lose", "Win", "Draw"}};
private Random rand = new Random();
Console.WriteLine(@" ______ _______ _______ ___ _ _______ _______ _______ _______ ______ _______ _______ ___ _______ _______ _______ ______ _______ ") ;
Console.WriteLine(@"| _ | | || || | | | | || _ || || || _ | | || || | | || || || _ | | |");
Console.WriteLine(@"| | || | _ || || |_| | | _ || |_| || _ || ___|| | || | _____|| || | | _____|| _____|| _ || | || | _____|");
Console.WriteLine(@"| |_||_ | | | || || _| | |_| || || |_| || |___ | |_||_ | |_____ | || | | |_____ | |_____ | | | || |_||_ | |_____ ");
Console.WriteLine(@"| __ || |_| || _|| |_ | ___|| || ___|| ___|| __ | |_____ || _|| | |_____ ||_____ || |_| || __ ||_____ |");
Console.WriteLine(@"| | | || || |_ | _ | | | | _ || | | |___ | | | | _____| || |_ | | _____| | _____| || || | | | _____| |");
Console.WriteLine(@"|___| |_||_______||_______||___| |_| |___| |__| |__||___| |_______||___| |_| |_______||_______||___| |_______||_______||_______||___| |_||_______|");
Console.WriteLine("please enter your name");
Console.WriteLine("please enter your age");
playerAge = Convert.ToInt16(Console.ReadLine());
Console.WriteLine(playerAge);
Console.WriteLine("You are too young, Press Enter to Go back to homescreen");
Console.WriteLine("Welcome to my game");
Console.WriteLine("Please choose either Rock[1], Paper[2] or Scissors[3]");
playerChoice = Convert.ToInt32(Console.ReadLine());
compChoice = rand.Next(3);
Console.WriteLine("You have chosen " + choices[playerChoice] + " and the computer chose " + choices[compChoice]);
Console.WriteLine("You " + outcomes[playerChoice,compChoice]);