ex3.pp 173 B

123456789
  1. Program Example3;
  2. { This program demonstrates the IsInLeapYear function }
  3. Uses SysUtils,DateUtils;
  4. Begin
  5. Writeln('Current year is leap year: ',IsInLeapYear(Date));
  6. End.