2
0

ex64.pp 223 B

12345678910111213141516
  1. Program Example64;
  2. { This program demonstrates the BCDToInt function }
  3. Uses sysutils;
  4. Procedure Testit ( L : longint);
  5. begin
  6. Writeln (L,' -> ',BCDToInt(L));
  7. end;
  8. Begin
  9. Testit(10);
  10. Testit(100);
  11. Testit(1000);
  12. End.