Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions