Question: C + + Given the integer vector myList with five elements and the input integer removeSize, resize myList to remove removeSize elements from the vector.

C++ Given the integer vector myList with five elements and the input integer removeSize, resize myList to remove removeSize elements from the vector.
Ex: If the input is 1, then the output is:
The beginning 1110789 The end
The beginning 111078 The end
Note: Assume that removeSize is a non-negative integer less than or equal to the vector's size.
#include
#include
using namespace std;
int main(){
vector myList(5);
int myListSize = myList.size();
int removeSize;
int i;
myList.at(0)=11;
myList.at(1)=10;
myList.at(2)=7;
myList.at(3)=8;
myList.at(4)=9;
cin >> removeSize;
cout << "The beginning ";
for (i =0; i < myList.size(); ++i){
cout << myList.at(i)<<"";
}
cout << "The end" << endl;
cout << "The beginning ";
for (i =0; i < myList.size(); ++i){
cout << myList.at(i)<<"";
}
cout << "The end" << 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!