fpc/docs/mathex/ex19.pp
2000-07-06 12:36:10 +00:00

11 lines
147 B
ObjectPascal

Program Example19;
{ Program to demonstrate the ldexp function. }
Uses math;
begin
writeln(ldexp(2,4):8:4);
writeln(ldexp(0.5,3):8:4);
end.