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

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

To create a flowchart to find the average, maximum, minimum, and sum of three numbers given by the user, you can follow these steps:

1. Start: Begin the flowchart.
2. Input: Prompt the user to enter the first number (Num1).
3. Input: Prompt the user to enter the second number (Num2).
4. Input: Prompt the user to enter the third number (Num3).
5. Initialization: Set Sum = 0, Average = 0, Max = 0, and Min = 0.
6. Sum: Add Num1, Num2, and Num3 to get the Sum and assign it to the Sum variable.
7. Average: Divide the Sum by 3 to get the Average and assign it to the Average variable.
8. Comparison: Compare Num1, Num2, and Num3 to determine the maximum and minimum values.
- If Num1 > Num2 and Num1 > Num3, assign Num1 to the Max variable.
- If Num2 > Num1 and Num2 > Num3, assign Num2 to the Max variable.
- If Num3 > Num1 and Num3 > Num2, assign Num3 to the Max variable.
- If Num1 < Num2 and Num1 < Num3, assign Num1 to the Min variable.
- If Num2 < Num1 and Num2 < Num3, assign Num2 to the Min variable.
- If Num3 < Num1 and Num3 < Num2, assign Num3 to the Min variable.
9. Output: Display the Sum, Average, Max, and Min values.
10. End: Finish the flowchart.

This flowchart will help you find the average, maximum, minimum, and sum of three numbers given by the user.