HOW TO drow flowchart

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

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.

To draw a flowchart for finding the average, maximum, minimum, and sum of three numbers given by the user, you can follow these steps:

1. Start: Begin the flowchart with the "Start" symbol.

2. Input: Draw a parallelogram to represent the "Input" symbol. Label it as "Input A, B, and C" to prompt the user to enter three numbers.

3. Assign Values: Draw rectangles to represent the "Assign Values" symbol. Use variables A, B, and C to store the input values.

4. Calculate the Sum: Draw a rectangle to represent the "Calculate Sum" symbol. Add variables A, B, and C to obtain the sum. Use a separate variable, let's say "sum," to store the sum.

5. Calculate the Average: Draw a rectangle to represent the "Calculate Average" symbol. Divide the sum (variable "sum") by 3 since there are three numbers. Use another variable, let's say "average," to store the average.

6. Calculate the Maximum: Draw a rectangle to represent the "Calculate Maximum" symbol. Use conditional statements (e.g., if-else) to compare the three numbers and find the maximum. Store the maximum value in a variable, let's say "max."

7. Calculate the Minimum: Draw a rectangle to represent the "Calculate Minimum" symbol. Use conditional statements (e.g., if-else) to compare the three numbers and find the minimum. Store the minimum value in a variable, let's say "min."

8. Output: Draw a parallelogram to represent the "Output" symbol. Label it as "Output Average, Maximum, Minimum, and Sum." Print the values of average, max, min, and sum on the output screen.

9. End: Draw an oval to represent the "End" symbol. Label it as "End" to indicate the flowchart's completion.

Your completed flowchart should include symbols for input, process, decision-making (if-else), and output. Connect these symbols with arrows to illustrate the flow of the program.