Question: In C++ please and thank you Part 3: Write a program to perform various vector operations For vectorOperations.cpp, you will get as input a bunch
In C++ please and thank you

Part 3: Write a program to perform various vector operations For vectorOperations.cpp, you will get as input a bunch of numbers as command-line arguments. Your job is to put them into a vector, in order, and perform the operations listed in the comments. Here are some sample runs of my solution: solution git:(master) X. /vectorOperations 1 2 3 min: 1 max: 3 min index: 0 max index: 2 second-smallest element: 2 second-largest element: 2 solution git:(master) X./vector Operations 2 5 4 0 3 min: 0 max: 5 min index: 3 max index: 1 second-smallest element: 2 second-largest element: 4 solution git:(master) X Compile your code with: g++ -std=c++17 vectorOperations.cpp -o vectorOperations and verify that it's working correctly
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
