Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

a) Overload the relational operators (==, !=, < and >) to compare dates. Two dates are to be compared by chronology of the year. For

a) Overload the relational operators (==, !=, < and >) to compare dates. Two dates are to be compared by chronology of the year. For example:

date(3,5,1999) != date(3,7,1999) (implement as external free function)

date(3,5,1999) == date(3,5,1999) (implement as external free function)

date(5,5,1977) > date(10,24,1973) (implement as member function)

date(12,25,1944) < date(9,30,1982) (implement as member function)

b) Write member function operator++ that can increment the date by one day.

c) Overload the input and output stream operators so that the date can be read/written as follows:

date date1; cin >> date1 >> // read in as 12/25/1944

cout << date1 << // printout out as 12/25/1944

d_date.h

#ifndef DATE_CLASS #define DATE_CLASS

#include #include #include

#include "d_except.h"

using namespace std;

class date { public: date (int mm=1, int dd=1, int yyyy=1900);

void writeShortDate () const; void writeLongDate () const:

void incrementDate(int ndays);

int numberOfDays() const; // return the number of days into the year

int getMonth() const; // return the month as integer value 1 to 12 int getDay() const; // return day of the month int getYear() const;

void setMonth(int mm); void setDay(int dd); void setYear(int yyyy); int daysInMonth() const;

bool isLeapYear() const; // is the current year a leap year (true/false)

private: enum monthName {Jan = 1, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec};

int month, day, year;

}; date::date (int mm, int dd, int yyyy): month(mm), day(dd), year(yyyy) { if (month < 1 || month > 12) throw dateError("date constructor:", month, "invalid month");

if (day <= 0 || day > daysInMonth()) throw dateError("date constructor:", day, "invalid day of month"); void date::writeShortDate () const { // save current format flags and fill character ios_base::fmtflags currentFlags = cout.flags(); char currentFill = cout.fill();

// enable right justification cout.setf(ios::right,ios::adjustfield);

cout.fill(' '); cout << setw(2) << month;

// set fill char to '0' cout.fill('0'); cout << '/' << setw(2) << day << '/' << year; cout.fill(currentFill); cout.setf(currentFlags); }

// write date with full month name void date::writeLongDate() const static string monthNames[] = {"", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" }; // use month as index into monthNames cout << monthNames[month] << " " << day << ", " << year; } void date::incrementDate(int ndays) { int totalDays, daysInYear = 365; int addDay;

if (ndays < 0 || ndays > 365) throw dateError("date incrementDate():", ndays, "is out of range");

if(isLeapYear()) { addDay = 1; daysInYear++; } else addDay = 0;

totalDays = numberOfDays() + ndays; if (totalDays/daysInYear == 1 && totalDays%daysInYear != 0) { year++; if(isLeapYear()) addDay = 1; else addDay = 0; totalDays = totalDays % daysInYear; }

if (totalDays <= 31) { month = 1; day = totalDays; } else if (totalDays <= 59 + addDay) { month = 2; day = totalDays - 31; } else if (totalDays <= 90 + addDay) { month = 3; day = totalDays - (59 + addDay); } else if (totalDays <= 120 + addDay) { month = 4; day = totalDays - (90 + addDay); } else if (totalDays <= 151 + addDay) { month = 5; day = totalDays - (120 + addDay); } else if (totalDays <= 181 + addDay) { month = 6; day = totalDays - (151 + addDay); } else if (totalDays <= 212 + addDay) { month = 7; day = totalDays - (181 + addDay); } else if (totalDays <= 243 + addDay) { month = 8; day = totalDays - (212 + addDay); } else if (totalDays <= 273 + addDay) { month = 9; day = totalDays - (243 + addDay); } else if (totalDays <= 304 + addDay) { month = 10; day = totalDays - (273 + addDay); } else if (totalDays <= 334 + addDay) { month = 11; day = totalDays - (304 + addDay); } else if (totalDays <= 365 + addDay) { month = 12; day = totalDays - (334 + addDay); } }

// determine the number of days into the year int date::numberOfDays() const { // assign a place holder value of 0 for monthLength[0] int monthLength[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};

int daysToDate = 0, i;

// add up all the days in the preceding months for (i = 1; i < month; i++) daysToDate += monthLength[i];

// if year is a leap year and the month is March or later, // increment daysToDate. use member function isLeapYear() if (isLeapYear() && month > 2) daysToDate += day + 1; else daysToDate += day;

return daysToDate; }

// return the month as integer value 1 to 12 int date::getMonth() const { return month; }

// return day of the month int date::getDay() const { return day; }

// return the year int date::getYear() const { return year; }

// assign a new month void date::setMonth(int mm) { // verify that mm is in the range 1 to 12 if (mm < 1 || mm > 12) throw dateError("date setMonth():", mm, "invalid month");

month = mm; }

// assign a new day of current month void date::setDay(int dd) { // verify that dd is in correct range for // the current month if (dd <= 0 || dd > daysInMonth()) throw dateError("date setDay():", dd, "invalid day of month");

day = dd; }

void date::setYear(int yyyy) { // assign the new year year = yyyy;

// if the date is February 29, yyyy must be a // leap year if (month == 2 && day == 29 && !isLeapYear()) throw dateError("date setYear():", year, "Not a leap year. February 29 invalid"); }

// return the number of days in the month int date::daysInMonth() const { int monthLength;

// monthName(month) converts integer month to the // equivalent monthName object switch (monthName(month)) { case Jan: case Mar: case May: case Jul: case Aug: case Oct: case Dec: monthLength = 31; // months with 31 days break;

case Apr: case Jun: case Sep: case Nov: monthLength = 30; // months with 30 days break;

case Feb: if (isLeapYear()) // special case of Feb monthLength = 29; else monthLength = 28; break; } return monthLength; }

// is the current year a leap year (true/false) bool date::isLeapYear() const { if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) return true; else return false; }

#endif // DATE_CLASS

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Databases And Information Systems Second East European Symposium Adbis 98 Poznan Poland September 1998 Proceedings Lncs 1475

Authors: Witold Litwin ,Tadeusz Morzy ,Gottfried Vossen

1st Edition

3540649247, 978-3540649243

More Books

Students also viewed these Databases questions

Question

Identify three types of physicians and their roles in health care.

Answered: 1 week ago

Question

Compare the types of managed care organizations (MCOs).

Answered: 1 week ago