Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pascal/NUMB3TST.PAS
T
2001-11-30 12:14:44 +01:00

17 lines
269 B
ObjectPascal

uses numbers;
var tmp: string;
tmp2: real;
begin
Write('Enter Floating Point Bin number: ');
ReadLn(tmp);
WriteLn('It''s: ',FPBin2Dec(tmp):0:10);
{
Write('Enter FP decimal: ');
ReadLn(tmp2);
WriteLn('It''s: ',Dec2FPBin(tmp2));
}
end.