Einzelnen Beitrag anzeigen

hathor
(Gast)

n/a Beiträge
 
#13

Re: Grad <-> Fahrenheit (Formel)

  Alt 30. Jun 2007, 19:56
StdConvs unit

CelsiusToFahrenheit
FahrenheitToCelsius


http://www.delphibasics.co.uk/RTL.as...usToFahrenheit
http://www.delphibasics.co.uk/RTL.as...nheitToCelsius

function FahrenheitToCelsius(const AValue: Double): Double;
begin
Result := ((AValue - 32) * 5) / 9;
end;

function CelsiusToFahrenheit(const AValue: Double): Double;
begin
Result := ((AValue * 9) / 5) + 32;
end;
  Mit Zitat antworten Zitat