Question: c++ 2. (20%) Conditional Sum Write a program to accept an integer as a threshold and a sequence of integers. The program should output the
2. (20%) Conditional Sum Write a program to accept an integer as a threshold and a sequence of integers. The program should output the sum of the integers in the sequence if the corresponding integer in the sequence is strictly larger than the threshold. The sequence of integers will end when is inputted. For instance, if the threshold is 5 and the inputted sequence of integers are 1 2 3 4 5 6 7 8 9 10 0, then only the integers 6 7 8 9 10 are larger than 5. The sum of 6 7 8 9 10 is 40. Therefore, the program should output 40. Sample Input the threshold: 5 Input a sequence of integers (input O to end) : 1 2 3 4 5 6 7 8 9 10 O The sum of integers whose are larger than the threshold is 40 Copy and paste Your Answer (C++ code) into the Following Text Box
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
