// Don't forget to comment code according to requirements // CS19: C++ Integer Sets Program // Starter Code by Steve J. Hodges class IntSet{ public: IntSet(int a=-1,int b=-1, int c=-1, int d=-1, int e=-1); void insertElement(int); void deleteElement(int); string toString() const; void unionOf(IntSet &, IntSet &); void intersectionOf(IntSet &, IntSet &); bool equals(IntSet) const; bool hasElement(int) const; int static getMax(){ return MAXSETVAL; } private: static const int MAXSETVAL=1000; bool data[MAXSETVAL+1]; }; // NOTE: this main function must be used for your final submission main(){ IntSet is1,is2(1,2,5),is3; cout << "CS19 Program #3 Integer Set Class"<