HOW TO drow flowchart

TO find the avrge,max min and sum of three number given by the user

1 answer

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

1. Start the flowchart by using the start/stop symbol at the top of the page.

2. Ask the user for three numbers by using the input/output symbol.

3. Create three variables to store each input value. Then initialize the sum variable to zero.

4. Use the decision-making symbol to compare the three numbers and determine the maximum value.

5. Similarly, compare the three numbers again to determine the minimum value and store them in respective variables.

6. Add the three numbers using a mathematical symbol and store the result in the sum variable.

7. Use another mathematical symbol to calculate the average of the three numbers by dividing the sum by 3.

8. Display the results of the average, maximum, minimum, and sum using the input/output symbol.

9. End the flowchart using the start/stop symbol.

The final flowchart should look something like this:

```Start

├─┬─┐ Input Num1
│ │ Processing
│ ├─┬─┐ Input Num2
│ │ │ Processing
│ │ ├─┬─┐ Input Num3
│ │ │ │ Processing
│ │ │ ├───┬───┐ Max = MAX(Num1, Num2, Num3)
│ │ │ │ Processing
│ │ │ ├───┬───┐ Min = MIN(Num1, Num2, Num3)
│ │ │ │ Processing
│ │ │ ├───┬───┐ Sum = Num1 + Num2 + Num3
│ │ │ │ Processing
│ │ │ ├───┬───┐ Avg = Sum / 3
│ │ │ │ Processing
│ │ │ ├───┬───┐ Display Max, Min, Sum, and Avg
│ │ │ │ Processing
│ │ │ └───┴───┘
│ │
│ └──────────────┘

End
```
Once you have completed your flowchart, you can use it to write a program in your chosen programming language that calculates the average, maximum, minimum, and sum of three user-given numbers.