c++
19.36 LAB: Output values below an amount - functions
Write a program that first gets a list of integers from input. The input begins with an integer indicating the number of integers that follow. Then, get the last value from the input, and output all integers less than or equal to that value.
Ex: If the input is:
5 50 60 140 200 75 100
the output is:
50 60 75
The 5 indicates that there are five integers in the list, namely 50, 60, 140, 200, and 75. The 100 indicates that the program should output all integers less than or equal to 100, so the program outputs 50, 60, and 75. For coding simplicity, follow every output value by a space, including the last one.
Such functionality is common on sites like Amazon, where a user can filter results.
Write your code to define and use two functions:
vector<int> GetUserValues(vector<int>& userValues,
int numValues)
void OutputIntsLessThanOrEqualToThreshold(vector<int>
userValues, int upperThreshold)
Utilizing functions helps to make main() very clean and intuitive.
Note: This is a lab from a previous chapter that now requires the use of functions.
#include <iostream> #include <vector> using namespace std; vector<int> GetUserValues() { vector<int> v; int count, number; cin >> count; for (int i = 0; i < count; ++i) { cin >> number; v.push_back(number); } return v; } void OutputIntsLessThanOrEqualToThreshold(vector<int> userValues, int upperThreshold) { for (int i = 0; i < userValues.size(); ++i) { if (userValues[i] <= upperThreshold) { cout << userValues[i] << " "; } } cout << endl; } int main() { vector<int> v = GetUserValues(); int threshold; cin >> threshold; OutputIntsLessThanOrEqualToThreshold(v, threshold); return 0; }
Get Answers For Free
Most questions answered within 1 hours.