Im a little stuck on trying to figure out how to let the user enter in several strings and then display the strings when they enter this "*". Any help is appreciated! Thanks!
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
string input;
cout<<"Enter in your shopping list. Enter in * to indicate you are done"<<endl;
vector<string> shoppingList();
while(cin>>input && input != *)
{
shoppingList.push_back(input);
}
if(cin>>input == *)
{
write_vector(shoppingList);
}
return 0;
}
There are two things wrong in this:-
This should be
And then
You should take the input in some string and then compare it with "*"