RosettaCodeData/Task/Non-decimal-radices-Output/Delphi/non-decimal-radices-output.delphi
2023-07-01 13:44:08 -04:00

8 lines
216 B
Text

procedure ShowRadixOutput(Memo: TMemo);
var I: integer;
begin
I:=123456789;
Memo.Lines.Add('Decimal Hexadecimal');
Memo.Lines.Add('-----------------------');
Memo.Lines.Add(IntToStr(I)+' - '+IntToHex(I,8));
end;