Re-post as I didn't include enough info in the last one.
I tried my best google fu and can't seem to find the right answer (doesn't mean it's not a stupid mistake, as I'm still new)
int main()
{
vector<string> clauses;
string test;
cout << "Please enter your choice or choices\n\ ";
while (cin >> test) {
clauses.push_back(test);
}
return 0;
}
I don't know how many options they will enter so I'm throwing them in a vector.
Currently when it runs it won't take any user input and just let the person keep typing even when hitting enter. c
Thanks in advance. Paul