home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 19
/
CD_ASCQ_19_010295.iso
/
dos
/
prg
/
pas
/
swag
/
datetime.swg
/
0013_LEAPYEAR.PAS.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-05-28
|
474b
|
14 lines
{
> I'm doing some date routines and I need to know if it is a leap year to
> validate a date.. A leap year is evenly divisble by 4.. I have no
> idea how to check to see if a remainder is present.. I'm going to try
> to read my manauls and stuff... but I'd appreciate any help! Thanks!
}
LeapYear := Byte((Year mod 4 = 0) and (Month = 2));
if LeapYear = 1 then
if Byte((Year mod 100 = 0) and (Year mod 400 <> 0)) = 1 then
LeapYear := 0;