Quote Originally Posted by Philip Nicoletti View Post
You have:

Code:
cin >> the_word;  //when the desired words are entered, the if loop will catch those and enter them into the vector
while (cin >> the_word)
{
 // etc.
}
The first cin reads the first word that is entered.
Fixed it, and everything works. Thanks for your help!