Description |
The CelsiusToFahrenheit function converts a CelsiusValue to fahrenheit.
|
|
Related commands |
|
|
|
Example code : Convert 21 celsius to fahrenheit |
var
celsius, fahrenheit : Double;
begin // Define the celsius value celsius := 21.0; // A nice warm day
// Convert to farenheit
fahrenheit := CelsiusToFahrenheit(celsius);
// Show both values
ShowMessageFmt('%f C = %f F',[celsius, fahrenheit]);
end;
|
Show full unit code |
21.00 C = 69.80 F
|
|