1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
const int MAX = 80;
const int MAX_MONTHS = 12;
enum Month { Jan, Feb, Mar, Apr, May, June, July, Aug, Sept, Oct, Nov, Dec };
Month getMonth(char[]);
string displayMonth(Month);
void constructSet(Month*, int);
bool monthInSet (Month, Month*, int);
void exampleOfSet()
{
int input;
Month m[MAX];
cout << "--------------------------------------------" << endl;
cout << "Here is an example on set of calendar months" << "\n"
<< "Set A = ";
constructSet (m, MAX_MONTHS);
}
void constructSet (Month* m, int size)
{
int randMonth;
m = new Month;
*m = Jan;
cout << "{";
for(int i = 0; i < size; i++)
{
if (i > 0)
{
cout << ",";
}
randMonth = rand() % MAX_MONTHS + 1;
*m = Month(randMonth);
string monthName = displayMonth(*m);
cout << monthName;
}
cout << "}" << endl;
}
bool monthInSet (Month month, Month* m)
{
}
Month getMonth(char garbage[])
{
int i = 0;
if (i == 0)
{
return Jan;
}
else if (i == 1)
{
return Feb;
}
else if (i == 2)
{
return Mar;
}
else if (i == 3)
{
return Apr;
}
else if (i == 4)
{
return May;
}
else if (i == 5)
{
return June;
}
else if (i == 6)
{
return July;
}
else if (i == 7)
{
return Aug;
}
else if (i == 8)
{
return Sept;
}
else if (i == 9)
{
return Oct;
}
else if (i == 10)
{
return Nov;
}
else if (i == 12)
{
return Dec;
}
}
string displayMonth(Month m)
{
string monthName;
switch(m)
{
case Jan:
monthName = "Jan";
break;
case Feb:
monthName = "Feb";
break;
case Mar:
monthName = "Mar";
break;
case Apr:
monthName = "Apr";
break;
case May:
monthName = "May";
break;
case June:
monthName = "June";
break;
case July:
monthName = "July";
break;
case Aug:
monthName = "Aug";
break;
case Sept:
monthName = "Sept";
break;
case Oct:
monthName = "Oct";
break;
case Nov:
monthName = "Nov";
break;
case Dec:
monthName = "Dec";
break;
}
return monthName;
}
|