#include #include using namespace std; /** Returns all values within a range. @param v a vector of floating-point numbers @param low the low end of the range @param high the high end of the range @return a vector of values from v in the given range */ vector between(vector v,double low, double high) { vector result; /*** add your code here ***/ return result; } int main() { vector salaries(5); salaries[0]=35000.0; salaries[1]=63000.0; salaries[2]=48000.0; salaries[3]=78000.0; salaries[4]=51500.0; vector midrange_salaries = between(salaries, 45000.0,65000.0); for (int i=0; i