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

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

Ex: If the input is

6

92 96 108 127 139 151

then the output is:

92 | 96 | 108 

Note: The vector size is always even.

#include #include using namespace std;

int main() { vector dailySalary; unsigned int i; int numValues;

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

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

/* Your code goes here */ cout << endl;

return 0; }

C++ please

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!