How to loop back the code to the first line after it done the calculation?
Console.WriteLine("Enter Temp in Celcius");
int x = Convert.ToInt16(Console.ReadLine());
if (x <= -271.15)
{
Console.WriteLine("Temperature below absolute zero!");
}
else
{
Console.WriteLine("Your answer is " + ((x * 1.8) + 32) + "F");
}