ex45.pp 294 B

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