how to draw flowchart to find the average max min and sum of thre numbers given by the user

1 answer

1. Start
2. Input three numbers a, b, c
3. Set total = a + b + c
4. Set average = total / 3
5. Set max = a
6. If b > max, set max = b
7. If c > max, set max = c
8. Set min = a
9. If b < min, set min = b
10. If c < min, set min = c
11. Output the total, average, max, and min
12. Stop