C++ Exercises: Asked user to input positive integers to process count, maximum, minimum, and average
Write a C++ program that asks the user to enter positive integers in order to process count, maximum, minimum, and average or terminate the process with -1.
Visual Presentation:

Sample Solution :-
C++ Code :
Sample Output:
Input a positive integers to calculate some processes or -1 to terminate: ---------------------------------------------------------------------------- Input positive integer or -1 to terminate: 25 Input positive integer or -1 to terminate: 15 Input positive integer or -1 to terminate: 35 Input positive integer or -1 to terminate: -1 Your input is for termination. Here is the result below: Number of positive integers is: 3 The maximum value is: 35 The minimum value is: 15 The average is 25.00
Flowchart:

C++ Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a program in C++ to find the sum of series 1 - X^2/2! + X^4/4!-.... upto nth term.
Next: Write a program in C++ to list non-prime numbers from 1 to an upperbound.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics