ex76.pp 249 B

12345678910
  1. Program Example76;
  2. { This program demonstrates the IncMinute function }
  3. Uses SysUtils,DateUtils;
  4. Begin
  5. Writeln('One Minute from now is ',TimeToStr(IncMinute(Time,1)));
  6. Writeln('One Minute ago from now is ',TimeToStr(IncMinute(Time,-1)));
  7. End.