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