c# program to convert fahrenheit to celsius code example
Example: fahrenheit to celsius c#
private void FahrenheitToCelsius(double fahrenheit)
{
var celsius = Math.Round((fahrenheit - 32) * 5 / 9, 2);
Console.WriteLine($"{celsius}°C");
}
// FahrenheitToCelsius(60); output 15.56°C
// FahrenheitToCelsius(77); output 25°C
// FahrenheitToCelsius(89); output 31.67°C