doing the calculator part. pretty hard..
=/.
Console.WriteLine("Enter the first number: ");
string userinput = Console.ReadLine();
int firstnum = Convert.ToInt32(userinput);
Console.WriteLine("Enter the second number: ");
string userinputtwo = Console.ReadLine();
int secondnum = Convert.ToInt32(userinputtwo);
Console.WriteLine("Enter the operation (+, -, *, /, or ^)");
string userinputthree = Console.ReadLine();
int operation = Convert.ToInt32(userinputthree);
Console.WriteLine(firstnum + operation + secondnum);
Console.ReadKey();
i keep getting an error on this line!
Console.WriteLine(firstnum + operation + secondnum);
im just trying to make it all show up in console on one line