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/NUMB2TST.PAS
2001-11-30 12:14:44 +01:00

26 lines
538 B
Plaintext

uses numbers, Crt;
var inu: longint;
hex: string;
y: integer;
begin
repeat
WriteLn('===================');
y := WhereY;
if (y=25) then y:=24;
Write('Enter number: ');
ReadLn(inu);
GotoXY(1,y);
ClrEol;
GotoXY(1,y); Write('d ',inu);
GotoXY(20,y); Write('h ',Dec2Hex(inu),' ');
GotoXY(40,y); WriteLn('b ',Dec2Bin(inu));
until (inu=0);
{ repeat
Write('Enter Hex-string: ');
ReadLn(hex);
WriteLn('Dec: ',Hex2Dec(hex));
until (hex='q'); }
end.