
6.40 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 100the output is:
50 60 75The 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. Utilizing functions helps to make main() very clean and intuitive.
The program must define the following two functions:
void GetUserValues(
void IntsLessThanOrEqualToThreshold(vector<int> userValues, int upperThreshold, vector<int>& resValues) - store in resValues values of userValues that are less than or equal to upperThreshold.
#include <iostream>
#include <vector>
using namespace std;
//Type here:
int main() {
vector<int> userValues;
vector<int> resValues;
int upperThreshold;
int numValues;
unsigned int i;
cin >> numValues;
GetUserValues(userValues, numValues);
cin >> upperThreshold;
IntsLessThanOrEqualToThreshold(userValues, upperThreshold, resValues);
for (i = 0; i < resValues.size(); ++i) {
cout << resValues.at(i) << " ";
}
cout << endl;
return 0;
}
Your help would be greatly appreciated!



Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 3 images

- Create a function that takes a number (int) and returns a corresponding string of dashes. Examples: num_to_dashes(1) ➞ "-" num_to_dashes(5) ➞ "-----" num_to_dashes(3) ➞ "---"arrow_forward*Coding language is Python Write a program that opens the productsales.txt file and reads the sales into a list. The program should output the following information, in this order: The total of all sales in the list The average of all sales in the list The lowest sale in the list The highest sale in the list NOTE: Your program should include at least one user-defined function, in addition to the main function. 4147 1594 2235 8433 10000 129 5555 7030 9764 7465 1111 4444 8954 2243 2895 1436 4978 5486 1436 9846 4789 8456 2497 2280 6375arrow_forwardPlease mention what sample runarrow_forward
- Recall the following segment of Java code for computing the set-difference of two given arrays (note that the lines have been numbered for the sake of reference): (1) int[] a, b; (2) (3) (4) (5) (6) (7) (8) (9) (10) count=0; (11) for (int i=0; i<=a.length-1; i++) { (12) (13) (14) (15) (16) (17) (18) (19) (20) (21) (22) (23) } (24) (25) int[] ans = new int[count]; (26) for (int i=0; i<-count-1; count++) (27) // Input the arrays a and b here int[] tempAns; int count,j; boolean found; tempAns = new int[a.length]; found = false; j-e; while (j<-b.length-1 && !found) { if (a[i]==b[j]) found = true; j+; } if (!found) { tempAns[count]=a[i]; count++; } ans[i] = tempAns[i]; Suppose we want to modify the above code to compute the set union of the arrays a and b, i.e., the set of all elements that are in either a or b. Which of the following changes would accomplish that?arrow_forwardIn c++, Declare a constant “ SIZE = 5 ” Declare an array of ints , of size SIZE . Initializethat array to have the values 10, 12, 15, 19, 6 .– Write a loop that calculates and prints out the minimum value of the array.– Write a loop that calculates and prints out the maximum value of the array.– Write a loop that calculates and prints out the average value of the array.arrow_forwardExams.cpp) Suppose a teacher weights the fourexams he gives 10%, 25%, 30%, and 35%. Write a programthat reads ten sets of four grades, prints the weightedaverage of each set, and prints the unweighted average ofeach test. The number of students should be in a globalconstant.arrow_forward
- 11arrow_forwardWrite a while loop to read positive integers from input until a non-positive integer is read. For each positive integer read before the non-positive integer, add the positive integer plus five to vector vect1. Ex: If the input is 9 1 2 8 -999, then the output is: 14 6 7 13 Note: Positive integers are greater than 0. 1 #include 2 #include 3 using namespace std; 4 5 int main() { 6 7 8 9 10 11 12 13 14 15 16 17 } vector vect1; int value; int i; V* Your code goes here */ for (i = 0; i < vect1.size(); ++i) { cout << vect1.at (i) << endl; } return 0; Iarrow_forward11: series.cpp) Write a program that will add the terms of an infinite geometric series. The program should read the first term (a) and the common ratio (r) for the series. It should then compute the sum in two ways: by formula ( s= ), and by adding the individual terms until the answer agrees with the formula to 7 significant digits. Then print the formula answer, the answer found by adding thearrow_forward
- Transient PopulationPopulations are affected by the birth and death rate, as well as the number of people who move in and out each year. The birth rate is the percentage increase of the population due to births and the death rate is the percentage decrease of the population due to deaths. Write a program that displays the size of a population for any number of years. The program should ask for the following data: The starting size of a population P The annual birth rate (as a percentage of the population expressed as a fraction in decimal form)B The annual death rate (as a percentage of the population expressed as a fraction in decimal form)D The average annual number of people who have arrived A The average annual number of people who have moved away M The number of years to display nYears Write a function that calculates the size of the population after a year. To calculate the new population after one year, this function should use the formulaN = P + BP - DP + A - Mwhere N is the…arrow_forwardQ1. With Menu Driven Program Design a Calculator having all the main functions also use Math's functions. Q2. Write a program to find that a letter is vowel or not using If-else statement? Q3. Write a program that performs a survey on beverages. The program sholud prompt for the next person untila lookout value of -1 is entered to terminate the program. Each person participating in the survey should choose their favorite beverage from the following list? 1. Cofee 2. Tea 3. Coke 4. Orange Juice Q4. Given an integer n such as 1367. Write a program that computes the inverse of this integer as 7631. Q5. Write a program to print prime numbers within given range using while loop?arrow_forwardC++ Vector iteration: Sum of excess. Vector testGrades contains NUM_VALS test scores. Write a for loop that sets sumExtra to the total extra credit received. Full credit is 100, so anything over 100 is extra credit. Ex: If testGrades = {101, 83, 107, 90}, then sumExtra = 8, because 1 + 0 + 7 + 0 is 8.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





