// // Example 5.5. Default constructor // Pre: none // Post: The Date object January 1, 1900, has been constructed. // Date::Date() { month = 1; day = 1; year = 1900; }