Question: IN C + + Write a while loop to read strings from input until completed is read. For each string read before completed, add the

IN C++Write a while loop to read strings from input until "completed" is read. For each string read before "completed", add the string to vector stringVector.
Ex: If the input is pear cabinet sofa shoerack completed, then the output is:
pear
cabinet
sofa
shoerackIN#include
using namespace std;
int main(){
vector stringVector;
string value;
int i;
/* Your code goes here */
for (i =0; i < stringVector.size(); ++i){
cout << stringVector.at(i)<< endl;
}
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!