Statistics are often calculated with varying amounts of input data. Write a program that prompts for and takes any number of non-negative integers as input, and outputs the average and max. A negative integer ends the input and is not included in the statistics. Example program run (the user types only the numbers, in this case 15 20 0 5 -1): Enter numbers separated by spaces, with a negative number to quit: 15 20 0 5 -1 Average = 10 Max = 20 #include using namespace std; /* program that prompts for and takes any number of non-negative integers as input, and outputs the average and max. A negative integer ends the input and is not included in the statistics. Example program run (the user types only the numbers, in this case 15 20 0 5 -1): Enter numbers separated by spaces, with a negative number to quit: 15 20 0 5 -1 Average = 10 Max = 20 */ int main() { /* Type your code here. */ return 0; }
Statistics are often calculated with varying amounts of input data. Write a
Example program run (the user types only the numbers, in this case 15 20 0 5 -1):
Enter numbers separated by spaces, with a negative number to quit: 15 20 0 5 -1 Average = 10 Max = 20
#include <iostream>
using namespace std;
/* program that prompts for and takes any number of non-negative integers as input, and outputs the average and max.
A negative integer ends the input and is not included in the statistics.
Example program run (the user types only the numbers, in this case 15 20 0 5 -1):
Enter numbers separated by spaces, with a negative number to quit:
15 20 0 5 -1
Average = 10
Max = 20
*/
int main() {
/* Type your code here. */
return 0;
}
Step by step
Solved in 5 steps with 2 images