when i run my code, my console suddenly shuts off after a number is entered into the console.
int age;
Console.WriteLine("How old are you?");
age = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("You are {0} years old", age);
can someone help me with this problem? I never get to see the end result because it just shuts off. there are no errors that pop up but it is getting quite frustrating.