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
int main() { vector
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
Get step-by-step solutions from verified subject matter experts
