ex46.pp 235 B

1234567891011121314
  1. Program Example46;
  2. { This program demonstrates the MilliSecondOfTheSecond function }
  3. Uses SysUtils,DateUtils;
  4. Var
  5. N : TDateTime;
  6. Begin
  7. N:=Now;
  8. Writeln('MilliSecond of the Second : ',
  9. MilliSecondOfTheSecond(N));
  10. End.