//(°F - 32) x 5/9 =°C Console.WriteLine("Podaj temperaturę w stopniach Fahrenheita: "); float stopnieFahrenheita = float.Parse(Console.ReadLine()!); float stopnieCelcjusza = (stopnieFahrenheita - 32) * 5f / 9f; Console.WriteLine($"Temperatura w stopniach celcjusza wynosi: {Math.Round(stopnieCelcjusza, 2)}");