home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <WTime.h>
-
- int main()
- {
- Date MLK(1929,1,15);
- puts("MLK was born "+MLK.FullDesc());
- Date D2(1993,2,8);
- long Dif=D2-MLK;
- puts("\nThe difference between MLK's birthday and");
- puts(D2.FullDesc()+" is "+Str(Dif)+" days or");
- puts(Form("##.##",double(Dif)/365.2425)+" years.");
- return 0;
- }