ex44.pp 344 B

12345678910111213141516
  1. Program Example44;
  2. { This program demonstrates the MinuteOfTheHour function }
  3. Uses SysUtils,DateUtils;
  4. Var
  5. N : TDateTime;
  6. Begin
  7. N:=Now;
  8. Writeln('Minute of the Hour : ',MinuteOfTheHour(N));
  9. Writeln('Second of the Hour : ',SecondOfTheHour(N));
  10. Writeln('MilliSecond of the Hour : ',
  11. MilliSecondOfTheHour(N));
  12. End.