public static void Main()
Console.WriteLine("you have chosen to play scissors, paper, rock.");
Console.WriteLine("Input scissor, paper or rock; 3, 2, 1, Shoot!.");
Random rand = new Random();
for (int i = 0; i < 1; i++)
input = Console.ReadLine();
int rValue = rand.Next(0, 3);
if (input == "rock" && rValue == 0)
Console.WriteLine("Computers choice; ✂");
Console.WriteLine("Rock Beats Scissors, you win\n");
if (input == "paper" && rValue == 0)
Console.WriteLine("Computers choice; ✂");
Console.WriteLine("Scissors beats paper, you lose\n");
if (input == "scissor" && rValue == 0)
Console.WriteLine("Computers choice; ✂");
Console.WriteLine("It's a draw\n");
if (input == "scissor" && rValue == 1)
Console.WriteLine("Computers choice; 📰");
Console.WriteLine("Scissors beats paper, you win\n");
if (input == "rock" && rValue == 1)
Console.WriteLine("Computers choice; 📰");
Console.WriteLine("paper beats rock, you lose\n");
if (input == "paper" && rValue == 1)
Console.WriteLine("Computers choice; 📰");
Console.WriteLine("It's a draw\n");
if (input == "scissor" && rValue == 2)
Console.WriteLine("Computers choice; 🗻");
Console.WriteLine("Rock beats scissors, you lose\n");
if (input == "rock" && rValue == 2)
Console.WriteLine("Computers choice; 🗻");
Console.WriteLine("It's a draw\n");
if (input == "paper" && rValue == 2)
Console.WriteLine("Computers choice; 🗻");
Console.WriteLine("Paper beats rock, you win\n");
if (input.ToUpper() == "E")
Console.WriteLine("Returning to menu");