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 then the output is:
The beginning The end
The beginning The end
Note: Assume that removeSize is a nonnegative integer less than or equal to the vector's size.
#include
#include
using namespace std;
int main
vector myList;
int myListSize myList.size;
int removeSize;
int i;
myList.at;
myList.at;
myList.at;
myList.at;
myList.at;
cin removeSize;
cout "The beginning ;
for i ; i myList.size; i
cout myList.ati;
cout "The end" endl;
cout "The beginning ;
for i ; i myList.size; i
cout myList.ati;
cout "The end" 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
