home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tutorial / cpptutor / source / tryndate.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-15  |  536 b   |  23 lines

  1.                              // Chapter 7 - Program 11 - TRYNDATE.CPP
  2. #include <iostream.h>
  3. #include "newdate.h"
  4.  
  5. void main(void)
  6. {
  7. new_date now, later, birthday;
  8.  
  9.    later.set_date(12, 31, 1991);
  10.    birthday.set_date(2, 19, 1991);
  11.  
  12.    cout << "Today is day " << now.get_day_of_year() << "\n";
  13.    cout << "Dec 31 is day " << later.get_day_of_year() << "\n";
  14.    cout << "Feb 19 is day " << birthday.get_day_of_year() << "\n";
  15. }
  16.  
  17.  
  18. // Result of execution
  19.  
  20. // Today is day 135
  21. // Dec 31 is day 365
  22. // Feb 19 is day 50
  23.