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