mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
13 lines
403 B
ObjectPascal
13 lines
403 B
ObjectPascal
uses
|
|
stdconvs,math;
|
|
begin
|
|
if CompareValue(FahrenheitToCelsius(32.0),0.0,0.000000001)<>EqualsValue then
|
|
halt(1);
|
|
if CompareValue(FahrenheitToCelsius(89.6),32.0,0.000000001)<>EqualsValue then
|
|
halt(2);
|
|
if CompareValue(CelsiusToFahrenheit(32.0),89.6,0.000000001)<>EqualsValue then
|
|
halt(3);
|
|
if CompareValue(CelsiusToFahrenheit(0.0),32.0,0.000000001)<>EqualsValue then
|
|
halt(4);
|
|
end.
|