Грешен пример в домашното от Цикли.
Problem 3. Min, Max, Sum and Average of N Numbers
Write a program that reads from the console a sequence of n integer numbers and returns the minimal, the maximal number, the sum and the average of all numbers (displayed with 2 digits after the decimal point). The input starts by the number n (alone in a line) followed by n lines, each holding an integer number. The output is like in the examples below. Examples:
input |
output |
|
input |
output |
3 2 5 1 |
min = 1 max = 5 sum = 8 avg = 2.67 |
2 -1 4 |
min = -1 max = 4 sum = 3 avg = 1.50 |
Моля да промените примера за домашното, че е много объркващ (поне за мен). Объркването идва от това, че в таблицата не се разбира кое е броя на числата "n" и кое са самите числа. Извинете ако вече има такъв пост.