#include #include using namespace std; // myTypesInClass1.cpp //enum monthType { JAN=1, FEB=2, MAR=3, APR=4, MAY=5 }; string months[6]={"Jan","Feb","Mar","Apr","May" }; class Base { public: //monthType Type; enum monthType { JAN=1, FEB=2, MAR=3, APR=4, MAY=5 }; }; class Derived: public Base { public: int j; void month() { for(int i= JAN; i< MAY; i++ ) { cout<<"\n month "<