`static void Main(string[] args)
{
double celsius, Fahrenheit;
Convert.ToDouble(Console.ReadLine());
Console.Write("Enter Fahrenheit temperature : ");
celsius = (Fahrenheit - 32) * 5 / 9;
Console.WriteLine();
Console.WriteLine("\nThe converted Celsius temperature is : " + celsius);
Console.ReadLine();
}
}
}`
I tried to different methods but it's seems like it doesn't work. I expect that you could help me and this program will work! thanks
Try this: