Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions