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

17 lines
269 B
Plaintext

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.