Question: #Given the integer vector myValues with four elements and the input integer numNew, resize myValues to add numNew elements to the vector. After resizing myValues,
#Given the integer vector myValues with four elements and the input integer numNew, resize myValues to add numNew elements to the vector.
After resizing myValues, the new elements are initialized with the default value
Ex: If the input is then the output is:
Note: Assume that numNew is a nonnegative integer.include
#include
using namespace std;
int main
vector myValues;
int myValuesSize myValues.size;
int numNew;
int i;
myValues.at;
myValues.at;
myValues.at;
myValues.at;
cin numNew;
for i ; i myValues.size; i
cout myValues.ati;
cout endl;
Your code goes here
for i ; i numNew myValuesSize; i
myValues.ati;
for i ; i myValues.size; i
cout myValues.ati;
cout endl;
return ;
Given the integer vector myValues with four elements and the input integer numNew, resize myValues to add numNew elements to the vector.
After resizing myValues, the new elements are initialized with the default value
Ex: If the input is then the output is:
Note: Assume that numNew is a nonnegative integer.
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
