Question: Integer vecVals is read from input. Given the integer vector yearlyMiles with the size of vecVals, write a for loop to output the integers in

Integer vecVals is read from input. Given the integer vector yearlyMiles with the size of vecVals, write a for loop to output the integers in the second half of yearlyMiles in reverse order. Separate the integers with a vertical bar surrounded by spaces (" | ").

Ex: If the input is

6

108 125 140 157 164 177

then the output is:

177 | 164 | 157 

Note: The vector size is always even.

#include #include using namespace std;

int main() { vector yearlyMiles; int i; int vecVals;

cin >> vecVals; // Creates a vector of size vecVals and initialize all values to 0 yearlyMiles.resize(vecVals);

for (i = 0; i < yearlyMiles.size(); ++i) { cin >> yearlyMiles.at(i); }

ADD THE CODE HERE

cout << 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!