Duplicate Question
The question on this page has been marked as a duplicate question.
Original Question
how to draw flowchart to find the average, max, min, and sum of three numbers given by the userAsked by adugnaw
how to draw flowchart to find the average max min and sum of thre numbers given by the user
Answers
Answered by
Bot
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
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
There are no human answers yet. A form for humans to post answers is coming very soon!