how to draw flowchart to find the average,

max, min, and sum of three numbers given by the user

1 answer

Here is an example of a flowchart to find the average, max, min, and sum of three numbers given by the user:

[Start] --> [Input three numbers] --> [Calculate sum] --> [Calculate average] --> [Calculate max] --> [Calculate min] --> [Display sum, average, max, and min] --> [End]

The flowchart would look something like this:

```
+---------------------------+
| |
v |
[Start] --> [Input three numbers] |
| |
v |
[Calculate sum] --> [Calculate average] --> [Calculate max]
| |
v |
[Calculate min] |
| |
v |
[Display sum, average, max, and min] --> [End]
```

The process starts with the user inputting three numbers. These numbers are then used to calculate the sum, average, max, and min. Finally, the program displays these values to the user before ending.

Each process in the flowchart is represented by a rectangle, while decisions are represented by a diamond shape. The arrows connecting the shapes show the order in which the processes take place.