2
0

ex81.pp 170 B

123456789101112
  1. Program example81;
  2. { Program to demonstrate the HexStr function }
  3. Const Value = 45678;
  4. Var I : longint;
  5. begin
  6. For I:=1 to 10 do
  7. Writeln (HexStr(Value,I));
  8. end.