CHALLENGE 6.11.5: Modify a vector parameter. ACTIVITY Write a function SwapVector Ends() that swaps the first and last elements of its vector parameter. Ex: sortVector = {10, 20, 30, 40} becomes (40, 20, 30, 10). 406554.2871636.qx3zqy7 1 #include 2 #include 3 using namespace std; 4 5* Your solution goes here */ 6 7 int main() { 8 9 10 11 12 13 14 15 vector sortVector (4); unsigned int i; int userNum; for (i = 0; i < sortVector.size(); ++i) { cin>> userNum; sortVector.at (i) = userNum;

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18SA
icon
Related questions
Question
CHALLENGE 6.11.5: Modify a vector parameter.
ACTIVITY
Write a function SwapVector Ends() that swaps the first and last elements of its vector parameter. Ex: sortVector = {10, 20, 30, 40}
becomes {40, 20, 30, 10}.
406554.2871636.qx3zqy7
1 #include <iostream>
2 #include <vector>
3 using namespace std;
4
5* Your solution goes here */
6
7 int main() {
9
10
11
12
13
14
15
16
vector<int> sortVector (4);
unsigned int i;
int userNum;
for (i
}
-
0; i sortVector.size(); ++i) {
cin >> userNum;
sortVector.at (i) = userNum;
Transcribed Image Text:CHALLENGE 6.11.5: Modify a vector parameter. ACTIVITY Write a function SwapVector Ends() that swaps the first and last elements of its vector parameter. Ex: sortVector = {10, 20, 30, 40} becomes {40, 20, 30, 10}. 406554.2871636.qx3zqy7 1 #include <iostream> 2 #include <vector> 3 using namespace std; 4 5* Your solution goes here */ 6 7 int main() { 9 10 11 12 13 14 15 16 vector<int> sortVector (4); unsigned int i; int userNum; for (i } - 0; i sortVector.size(); ++i) { cin >> userNum; sortVector.at (i) = userNum;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning