I have everything set ready to go except one thing and I think I need another set of eyes to solve this one. The loop will not exit even though I have countered it within in the loop. I have made comments next to the potential problems. Please take a look and let me know your thoughts.
void DayOfTheWeek::getDay()
{
string Day[7] = {"sun","mon","tues","wed","thur","fri","sat"};
string Days[7] = {"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};
string choice;
int dayFound = 0;
int x = 0;
int y = 0;
bool dayCount = false;
cout << "\n What day are you looking for? " << endl << endl;
cout << " sun - Sunday\n";
cout << " mon - Monday\n";
cout << " tues - Tuesday\n";
cout << " wed - Wednesday\n";
cout << " thur - Thursday\n";
cout << " fri - Friday\n";
cout << " sat - Saturday\n";
cin >> choice;
Wow! A little miscue such as setting x = 0 was the problem. I can't thank you all enough for the assistance. That one hiccup was holding everything back. Also, Helios thanks for the example on the for loops; that is definitely an easier way than me writing everything out. Again, thank you and have a great day!