public static void Main()
Random rnd = new Random();
card01 = rnd.Next(0, 13);
string[] cards = {"2", "3", "4", "5", "6", "7", "8", "9", "10", "Jack", "Queen", "King", "Ace"};
Console.WriteLine("You drew a " + cards[card01]);
card02 = rnd.Next(0, 13);
string[] compcards = {"2", "3", "4", "5", "6", "7", "8", "9", "10", "Jack", "Queen", "King", "Ace"};
Console.WriteLine("The Computer drew a " + compcards[card02]);
Console.WriteLine("You win!");
Console.Write("You now have " + usercardTotal + " cards! Your opponent has " + compcardTotal + " cards now!");
Console.WriteLine("You Lose!");
Console.Write("You now have " + usercardTotal + " cards! Your opponent has " + compcardTotal + " cards now! ");
Console.WriteLine("You tied!");
card01 = rnd.Next(0, 13);
card02 = rnd.Next(0, 13);
Console.Write("You drew again and got a " + card01 + " and the computer got a " + card02 + "! ");
Console.Write(" You won the tie! ");
Console.Write(" You now have " + usercardTotal + " cards! Your opponent has " + compcardTotal + " cards now! ");
Console.Write(" You lost the tie!");
Console.Write(" You now have " + usercardTotal + " cards! Your opponent has " + compcardTotal + " cards now! ");