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 CWrite 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 ; i stringVector.size; i
cout stringVector.ati endl;
return ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
